diff options
author | Andy Wingo <wingo@pobox.com> | 2008-08-07 13:29:15 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2008-08-07 13:29:15 +0200 |
commit | d0927dde9759bee23a1bdafdd0148f6192b1e20f (patch) | |
tree | 67b9d6ac810ad63165bff03308582b8d52444a28 /benchmark | |
parent | 07e56b27a1841d70e562ac69b9ef9d25d489ceb3 (diff) |
build fixes
* benchmark/measure.scm: Update for module changes.
* module/system/vm/Makefile.am: Update the set of modules needing
compilation.
* src/guile-vm.c: Bootstrap the VM, now that we have a function for it.
* testsuite/Makefile.am:
* testsuite/run-vm-tests.scm: Update to fix make check, broken since we
merged with Guile.
Diffstat (limited to 'benchmark')
-rwxr-xr-x | benchmark/measure.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/measure.scm b/benchmark/measure.scm index aadbc516d..f100397cf 100755 --- a/benchmark/measure.scm +++ b/benchmark/measure.scm @@ -9,7 +9,7 @@ exec ${GUILE-guile} -l $0 -c "(apply $main (cdr (command-line)))" "$@" (define-module (measure) :export (measure) - :use-module (system vm core) + :use-module (system vm vm) :use-module (system vm disasm) :use-module (system base compile) :use-module (system base language)) |