cgen/ChangeLog:
authorJim Blandy <jimb@codesourcery.com>
Tue, 8 Feb 2005 04:52:24 +0000 (04:52 +0000)
committerJim Blandy <jimb@codesourcery.com>
Tue, 8 Feb 2005 04:52:24 +0000 (04:52 +0000)
2005-02-07  Jim Blandy  <jimb@redhat.com>

* cgen-opc.scm: Don't load fixup.scm here.  (See corresponding
changes in the opcodes directory.)

opcodes/ChangeLog:
2005-02-07  Jim Blandy  <jimb@redhat.com>

* Makefile.am (CGEN): Load guile.scm before calling the main
application script.
* Makefile.in: Regenerated.
* cgen.sh: Be prepared for the 'cgen' argument to contain spaces.
Simply pass the cgen-opc.scm path to ${cgen} as its first
argument; ${cgen} itself now contains the '-s', or whatever is
appropriate for the Scheme being used.

opcodes/ChangeLog
opcodes/Makefile.am
opcodes/Makefile.in
opcodes/cgen.sh

index 3cd146727d5c2c2c396a59b26197ace02dba3a2f..7c06b8f91be005d1a76b83e03650bcd5eeeede3e 100644 (file)
@@ -1,3 +1,13 @@
+2005-02-07  Jim Blandy  <jimb@redhat.com>
+
+       * Makefile.am (CGEN): Load guile.scm before calling the main
+       application script.
+       * Makefile.in: Regenerated.
+       * cgen.sh: Be prepared for the 'cgen' argument to contain spaces.
+       Simply pass the cgen-opc.scm path to ${cgen} as its first
+       argument; ${cgen} itself now contains the '-s', or whatever is
+       appropriate for the Scheme being used.
+
 2005-01-31  Andrew Cagney  <cagney@gnu.org>
 
        * configure: Regenerate to track ../gettext.m4.
index 36df7d951afabbf6e5280ea4dd027d67043ffefc..2176b43d5b0298b3aa69d6c71cd4a6bdcda2abbe 100644 (file)
@@ -357,7 +357,7 @@ CLEANFILES = \
 
 CGENDIR = @cgendir@
 CPUDIR = $(CGENDIR)/cpu
-CGEN = `if test -f ../guile/libguile/guile ; then echo ../guile/libguile/guile; else echo guile ; fi`
+CGEN = "`if test -f ../guile/libguile/guile ; then echo ../guile/libguile/guile; else echo guile ; fi` -l ${cgendir}/guile.scm -s"
 CGENFLAGS = -v
 
 CGENDEPS = \
index dfbdac8bfb2629008da94bb30d6cc2685fe6ff9e..9f929968e8ae79d65575bb90f6e8a83c6e3e1932 100644 (file)
@@ -532,7 +532,7 @@ CLEANFILES = \
 
 CGENDIR = @cgendir@
 CPUDIR = $(CGENDIR)/cpu
-CGEN = `if test -f ../guile/libguile/guile ; then echo ../guile/libguile/guile; else echo guile ; fi`
+CGEN = "`if test -f ../guile/libguile/guile ; then echo ../guile/libguile/guile; else echo guile ; fi` -l ${cgendir}/guile.scm -s"
 CGENFLAGS = -v
 CGENDEPS = \
        $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm \
index 5a340b6e527f0a2c1693c9da38520a6645985ace..bafc8f449b949643d97bfe96daf9f367092e19bc 100644 (file)
@@ -47,7 +47,7 @@ set -e
 
 action=$1
 srcdir=$2
-cgen=$3
+cgen="$3"
 cgendir=$4
 cgenflags=$5
 arch=$6
@@ -93,7 +93,7 @@ opcodes)
        rm -f tmp-dis.c tmp-dis.in1
 
        # Run CGEN.
-       ${cgen} -s ${cgendir}/cgen-opc.scm \
+       ${cgen} ${cgendir}/cgen-opc.scm \
                -s ${cgendir} \
                ${cgenflags} \
                -f "${options}" \