mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
glibc: Turn implicit-int back into warning
As of GCC14 implicit-int has been upgraded to an error. While this is generally a good idea it trips up some older code (particularly in autoconf generated configure scripts). Add -Wno-implicit-int to CFLAGS for glibc when using an old GLIBC with a new GCC. Fixes #2208 Signed-off-by: Chris Packham <judge.packham@gmail.com>
This commit is contained in:
parent
d428028db0
commit
8c1cdb94c1
@ -197,8 +197,8 @@ config GLIBC_ENABLE_DEBUG
|
|||||||
config GLIBC_EXTRA_CFLAGS
|
config GLIBC_EXTRA_CFLAGS
|
||||||
string
|
string
|
||||||
prompt "extra target CFLAGS"
|
prompt "extra target CFLAGS"
|
||||||
default "-Wno-missing-attributes -Wno-array-bounds -Wno-array-parameter -Wno-stringop-overflow -Wno-maybe-uninitialized" if GLIBC_2_29_or_older && GCC_11_or_later
|
default "-Wno-missing-attributes -Wno-array-bounds -Wno-array-parameter -Wno-stringop-overflow -Wno-maybe-uninitialized" if GLIBC_2_29_or_older && GCC_11_or_later && !GCC_14_or_later
|
||||||
default ""
|
default "-Wno-missing-attributes -Wno-array-bounds -Wno-array-parameter -Wno-stringop-overflow -Wno-maybe-uninitialized -Wno-implicit-int" if GLIBC_2_29_or_older && GCC_14_or_later
|
||||||
help
|
help
|
||||||
Extra target CFLAGS to use when building.
|
Extra target CFLAGS to use when building.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user