public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
From: "cvs-commit at gcc dot gnu.org" <sourceware-bugzilla@sourceware.org>
To: gdb-prs@sourceware.org
Subject: [Bug build/31099] [gdb/build] -DNDEBUG missing in python flags of release build
Date: Thu, 30 Nov 2023 20:31:53 +0000	[thread overview]
Message-ID: <bug-31099-4717-BsmYdBXb9v@http.sourceware.org/bugzilla/> (raw)
In-Reply-To: <bug-31099-4717@http.sourceware.org/bugzilla/>

https://sourceware.org/bugzilla/show_bug.cgi?id=31099

--- Comment #2 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Tom de Vries <vries@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=d5835df2eebf8e9cd3ae35b683c831c2a16a5269

commit d5835df2eebf8e9cd3ae35b683c831c2a16a5269
Author: Tom de Vries <tdevries@suse.de>
Date:   Thu Nov 30 21:31:46 2023 +0100

    [gdb/build] Fix adding -DNDEBUG to python flags of release build

    In gdb/configure the line:
    ...
        $development || tentative_python_cflags="$tentative_python_cflags
-DNDEBUG"
    ...
    intends to ensure that -DNDEBUG is added to the python flags of a release
    build.

    However, when building gdb-14-branch we have:
    ...
    configure:22024: checking compiler flags for python code
      ...
    configure:22047: result:  -fno-strict-aliasing -fwrapv
    ...

    This is a regression since commit db6878ac553 ("Move sourcing of
development.sh
    to GDB_AC_COMMON"), which introduced a reference before assignment:
    ...
        $development || tentative_python_cflags="$tentative_python_cflags
-DNDEBUG"
      ...
    . $srcdir/../bfd/development.sh
    ...
    and consequently -DNDEBUG is never added.

    [ This was not obvious to me, but apparently evaluating an empty or
undefined
    variable in this context is similar to using ':' or 'true', so the line is
    evaluated as:
    ...
        true || tentative_python_cflags="$tentative_python_cflags -DNDEBUG"
    ... ]

    Fix this by moving GDB_AC_COMMON up in gdb/configure.ac, similar to how
that
    was done for gdbserver/configure.ac in commit db6878ac553.

    [ Unfortunately, the move might introduce issues similar to the one we're
    fixing, and I'm not sure how to check for this.  Shellcheck doesn't detect
    this type of problem.  FWIW, I did run shellcheck (using arguments -xa, in
the
    src/gdb directory to make sure ../bfd/development.sh is taken into account)
    before and after and observed that the number of lines/words/chars in the
    shellcheck output is identical. ]

    Build & tested on top of trunk.

    Also build on top of gdb-14-branch, and observed this in gdb/config.log:
    ...
    configure:25214: checking compiler flags for python code
      ...
    configure:25237: result:  -fno-strict-aliasing -fwrapv -DNDEBUG
    ...

    Approved-By: Tom Tromey <tom@tromey.com>

    PR build/31099
    Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31099

-- 
You are receiving this mail because:
You are on the CC list for the bug.

  parent reply	other threads:[~2023-11-30 20:31 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-30  8:45 [Bug build/31099] New: " vries at gcc dot gnu.org
2023-11-30 11:22 ` [Bug build/31099] " vries at gcc dot gnu.org
2023-11-30 20:31 ` cvs-commit at gcc dot gnu.org [this message]
2023-11-30 20:33 ` vries at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-31099-4717-BsmYdBXb9v@http.sourceware.org/bugzilla/ \
    --to=sourceware-bugzilla@sourceware.org \
    --cc=gdb-prs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).