diff options
author | Dimitar Dimitrov <dimitar@dinux.eu> | 2021-04-05 19:21:35 +0300 |
---|---|---|
committer | Dimitar Dimitrov <dimitar@dinux.eu> | 2021-05-07 21:02:34 +0300 |
commit | 0d315c88a77a811fdfad0b9fdaa4d8b337cc0a39 (patch) | |
tree | eb1bc4c0793401df3ca98c6cb3bee3fe9b5e1f31 /sim/testsuite/common | |
parent | 476654beaead1ac1b4322c01722ace865e4adee4 (diff) | |
download | binutils-gdb-0d315c88a77a811fdfad0b9fdaa4d8b337cc0a39.tar.gz |
sim: Add bfd include path for common testsuite tools
On a host without installed libbfd, this patch fixes the following
"make check-sim" errors for both pru cross target, and native x86_64:
In file included from ../../../binutils/sim/common/sim-basics.h:131,
from testsuite/common/bits32m0.c:13:../../../binutils/sim/../include/gdb/callback.h:55:10: fatal error: bfd.h: No such file or directory
55 | #include "bfd.h"
| ^~~~~~~
Signed-off-by: Dimitar Dimitrov <dimitar@dinux.eu>
Diffstat (limited to 'sim/testsuite/common')
-rw-r--r-- | sim/testsuite/common/local.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sim/testsuite/common/local.mk b/sim/testsuite/common/local.mk index 38ffb0b0b7d..4db7981d160 100644 --- a/sim/testsuite/common/local.mk +++ b/sim/testsuite/common/local.mk @@ -29,7 +29,8 @@ check_PROGRAMS += $(TESTS) %C%_CPPFLAGS = \ -I$(srcdir)/common \ - -I$(srcroot)/include + -I$(srcroot)/include \ + -I../bfd # These tests are build-time only tools. Override the default rules for them. %D%/%.o: %D%/%.c |