1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-17 01:00:20 +02:00

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.
This commit is contained in:
Andy Wingo 2008-08-07 13:29:15 +02:00
parent 07e56b27a1
commit d0927dde97
5 changed files with 9 additions and 5 deletions

View file

@ -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 */
}