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 /src/guile-vm.c | |
parent | 07e56b27a1841d70e562ac69b9ef9d25d489ceb3 (diff) | |
download | guile-d0927dde9759bee23a1bdafdd0148f6192b1e20f.tar.gz |
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 'src/guile-vm.c')
-rw-r--r-- | src/guile-vm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/guile-vm.c b/src/guile-vm.c index 342fc4659..2cc5efc49 100644 --- a/src/guile-vm.c +++ b/src/guile-vm.c @@ -44,11 +44,13 @@ #endif #include <libguile.h> +#include "bootstrap.h" int main (int argc, char **argv) { scm_init_guile (); + scm_bootstrap_vm (); scm_shell (argc, argv); return 0; /* never reached */ } |