diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-11-01 00:55:02 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-11-01 00:55:02 -0400 |
commit | d0d7f2a742bb640cc8654231ed195d092c534ce3 (patch) | |
tree | 7b8543f0d79690eece21b32dbae1febdc548f313 /sim/erc32 | |
parent | c79eb8d991e704810c58435c1db1d02038057396 (diff) | |
download | gdb-d0d7f2a742bb640cc8654231ed195d092c534ce3.zip gdb-d0d7f2a742bb640cc8654231ed195d092c534ce3.tar.gz gdb-d0d7f2a742bb640cc8654231ed195d092c534ce3.tar.bz2 |
sim: erc32: reduce -Wno-error scope
Only one file in here still generates warnings, so reduce the -Werror
disable to that alone now that we require GNU make and can set variables
on a per-object basis.
Diffstat (limited to 'sim/erc32')
-rw-r--r-- | sim/erc32/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/erc32/Makefile.in b/sim/erc32/Makefile.in index 130220e..613f9fa 100644 --- a/sim/erc32/Makefile.in +++ b/sim/erc32/Makefile.in @@ -32,8 +32,8 @@ SIM_EXTRA_CLEAN = clean-sis # behaviour of UART interrupt routines ... SIM_EXTRA_CFLAGS += -DFAST_UART -I$(srcroot) -# Code doesn't build cleanly yet. -SIM_WERROR_CFLAGS = +# Some modules don't build cleanly yet. +exec.o: SIM_WERROR_CFLAGS = ## COMMON_POST_CONFIG_FRAG |