aboutsummaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorAndrew Waterman <waterman@cs.berkeley.edu>2016-07-08 18:25:13 -0700
committerAndrew Waterman <waterman@cs.berkeley.edu>2016-07-08 18:25:13 -0700
commitdadad2d984342643cad8b2d22b7549f986d3e05e (patch)
tree2418db227df4cb2914d6e316c3e4798576a490de /aclocal.m4
parentf6eff201069564ea01100d556b079f99e076dd09 (diff)
downloadriscv-pk-dadad2d984342643cad8b2d22b7549f986d3e05e.zip
riscv-pk-dadad2d984342643cad8b2d22b7549f986d3e05e.tar.gz
riscv-pk-dadad2d984342643cad8b2d22b7549f986d3e05e.tar.bz2
Remove vestigial configure search for riscv-isa-run/spike
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m428
1 files changed, 0 insertions, 28 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 2bc0669..55a8b70 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -105,34 +105,6 @@ AC_DEFUN([MCPPBS_PROG_INSTALL],
])
#-------------------------------------------------------------------------
-# MCPPBS_PROG_RUN
-# -------------------------------------------------------------------------
-# If we are doing a non-native build then we look for an isa simulator
-# to use for running tests. We set the RUN substitution variable to be
-# empty for native builds or to the name of the isa simulator for
-# non-native builds. Thus a makefile can run compiled programs
-# regardless if we are doing a native or non-native build like this:
-#
-# $(RUN) $(RUNFLAGS) ./test-program
-#
-
-AC_DEFUN([MCPPBS_PROG_RUN],
-[
- AS_IF([ test "${build}" != "${host}" ],
- [
- AC_CHECK_TOOLS([RUN],[spike],[no])
- AS_IF([ test ${RUN} = "no" ],
- [
- AC_MSG_ERROR([Cannot find simulator for target ${target_alias}])
- ])
- ],[
- RUN=""
- ])
- AC_SUBST([RUN])
- AC_SUBST([RUNFLAGS])
-])
-
-#-------------------------------------------------------------------------
# MCPPBS_SUBPROJECTS([ sproj1, sproj2, ... ])
#-------------------------------------------------------------------------
# The developer should call this macro with a list of the subprojects