diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-12-24 21:25:50 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-12-24 21:39:09 -0500 |
commit | a449d2c2943feabdda499868d09c8588a4395a38 (patch) | |
tree | d8e4b03ef29a658ce9fc596f287ab30cce61b7f1 /sim/mips | |
parent | d093438bdcf22b2d4e1738d2d55300745f88dd8d (diff) | |
download | gdb-a449d2c2943feabdda499868d09c8588a4395a38.zip gdb-a449d2c2943feabdda499868d09c8588a4395a38.tar.gz gdb-a449d2c2943feabdda499868d09c8588a4395a38.tar.bz2 |
sim: mips: add igen recursive dep
Make sure the igen tool exists before trying to compile the mips
subdir. This happens to work when mips has a subconfigure, but
hits a race condition when that is removed.
Diffstat (limited to 'sim/mips')
-rw-r--r-- | sim/mips/local.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sim/mips/local.mk b/sim/mips/local.mk index 159fd29..a708f64 100644 --- a/sim/mips/local.mk +++ b/sim/mips/local.mk @@ -24,5 +24,8 @@ noinst_PROGRAMS += %D%/run +## TODO: Delete this once mips igen rules move here from Makefile.in. +SIM_ALL_RECURSIVE_DEPS += $(IGEN) + %C%_SIM_EXTRA_HW_DEVICES = tx3904cpu tx3904irc tx3904tmr tx3904sio AM_MAKEFLAGS += %C%_SIM_EXTRA_HW_DEVICES="$(%C%_SIM_EXTRA_HW_DEVICES)" |