diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-06-28 21:26:48 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-07-01 18:05:40 -0400 |
commit | 2fe36d31f96519ea5ef988d85df1310bc177b5fa (patch) | |
tree | d75694894bf0749d04acee940a8168cc7b85884d /sim/common | |
parent | f375d32b35cef9813410107430963d51600d6896 (diff) | |
download | gdb-2fe36d31f96519ea5ef988d85df1310bc177b5fa.zip gdb-2fe36d31f96519ea5ef988d85df1310bc177b5fa.tar.gz gdb-2fe36d31f96519ea5ef988d85df1310bc177b5fa.tar.bz2 |
cgen: split GUILE setting out
This makes it easier to override to point to an older version of guile.
The current cgen code doesn't work with guile-2, so need to point to an
older guile-1.8.
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/ChangeLog | 5 | ||||
-rw-r--r-- | sim/common/Make-common.in | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 5b167eb..37d4dc9 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2021-07-01 Mike Frysinger <vapier@gentoo.org> + + * Make-common.in (GUILE): New variable. + (CGEN): Use $(GUILE). + 2021-06-30 Mike Frysinger <vapier@gentoo.org> * Make-common.in (SIM_SCACHE): Delete. diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index e7c1cce..a02f529 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -542,7 +542,8 @@ Makefile: Makefile.in $(srccom)/Make-common.in $(config.status) # CGEN support -CGEN = "`if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi` -l $(CGENDIR)/guile.scm -s" +GUILE = `if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi` +CGEN = "$(GUILE) -l $(CGENDIR)/guile.scm -s" CGENFLAGS = -v CGEN_CPU_DIR = $(CGENDIR)/cpu |