aboutsummaryrefslogtreecommitdiff
path: root/sim/testsuite/common/local.mk
AgeCommit message (Collapse)AuthorFilesLines
2021-11-26sim: testsuite: fix bits-gen EXEEXT handlingMike Frysinger1-4/+4
Add missing $(EXEEXT) to dependencies on bits-gen. These are actually build-only tools, but automake doesn't allow for build & host tools, so the rules are re-using EXEEXT.
2021-06-14sim: enable silent rules in common buildsMike Frysinger1-12/+12
We only do the common code as automake simplifies the logic.
2021-05-07sim: Add bfd include path for common testsuite toolsDimitar Dimitrov1-1/+2
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>
2021-04-03sim: testsuite: integrate common tests into buildMike Frysinger1-0/+84
Now that we have the common automake build with support for build-time programs working, we can integrate the common tests into the default `make check` flow.