diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-06-18 11:12:28 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-06-19 16:07:31 -0400 |
commit | bc56166f66244a9e3abc62c7bc595a6f800f23b0 (patch) | |
tree | 227192d65b33568c3864752513cfc9e1aa3f8c6c /sim/common | |
parent | d3562f83a7b8a1ae6e333cd5561419d3da18fcb4 (diff) | |
download | gdb-bc56166f66244a9e3abc62c7bc595a6f800f23b0.zip gdb-bc56166f66244a9e3abc62c7bc595a6f800f23b0.tar.gz gdb-bc56166f66244a9e3abc62c7bc595a6f800f23b0.tar.bz2 |
sim: unify toolchain dependency logic
The common dir is already probing this info since it's using automake,
so pass it down to the subdirs so they don't have to probe it at all.
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 848f8b0..5586bc8 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,9 @@ 2021-06-19 Mike Frysinger <vapier@gentoo.org> + * Make-common.in: Move dependency vars to ../arch-subdir.mk.in. + +2021-06-19 Mike Frysinger <vapier@gentoo.org> + * Make-common.in: Move toolchain vars to ../arch-subdir.mk.in. 2021-06-19 Mike Frysinger <vapier@gentoo.org> diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 64c0194..4b430b8 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -82,8 +82,6 @@ SIM_WARN_CFLAGS = $(WARN_CFLAGS) SIM_WERROR_CFLAGS = $(WERROR_CFLAGS) # Dependency tracking information. -DEPMODE = @CCDEPMODE@ -DEPDIR = @DEPDIR@ depcomp = $(SHELL) $(srcroot)/depcomp # Note that these are overridden by GNU make-specific code below if |