diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-06-18 01:14:39 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-06-18 10:25:04 -0400 |
commit | 47ce766a8b922377425cfa88189acb1d43ca58af (patch) | |
tree | 55a8e203cc2c722f0fe6410ca0fec574f3ba791e /sim/common | |
parent | 5a767724d7e4d8dfe70a82edceaeaa6d57ff2b84 (diff) | |
download | gdb-47ce766a8b922377425cfa88189acb1d43ca58af.zip gdb-47ce766a8b922377425cfa88189acb1d43ca58af.tar.gz gdb-47ce766a8b922377425cfa88189acb1d43ca58af.tar.bz2 |
sim: unify -Werror build settings
Move these options up to the common dir so we only test & export
them once across all ports. It also enables -Werror usage on the
common files we've been pulling out of arch subdirs.
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/ChangeLog | 4 | ||||
-rw-r--r-- | sim/common/Make-common.in | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 842a897..c177c39 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,9 @@ 2021-06-18 Mike Frysinger <vapier@gentoo.org> + * Make-common.in (WARN_CFLAGS, WERROR_CFLAGS): Delete. + +2021-06-18 Mike Frysinger <vapier@gentoo.org> + * Make-common.in: Include ../arch-subdir.mk. 2021-06-18 Mike Frysinger <vapier@gentoo.org> diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index b82e76c..51e4ca7 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -96,8 +96,6 @@ SIM_HW = @sim_hw@ SIM_INLINE = @sim_inline@ SIM_RESERVED_BITS = @sim_reserved_bits@ SIM_SCACHE = @sim_scache@ -WARN_CFLAGS = @WARN_CFLAGS@ -WERROR_CFLAGS = @WERROR_CFLAGS@ SIM_WARN_CFLAGS = $(WARN_CFLAGS) SIM_WERROR_CFLAGS = $(WERROR_CFLAGS) |