Building stand-alone executable is officially supported as of
0.9.6. The static library libgauche-static-0.9.a
is built
by default. See
Building standalone executables
section of the manual for the details.
This file describes some advanced technical details.
In order to create a static library that excludes certain
modules, you can run make static
under src/
directory
with the evironment variable LIBGAUCHE_STATIC_EXCLUDES
set to list modules to be excluded:
$ LIBGAUCHE_STATIC_EXCLUDES=dbm.gdbm,os.windows make static
If you want to call Gauche API from statically linked C app,
you need slightly different initialization than the usual.
Instead of calling GC_INIT()
and Scm_Init()
, you should do
the following:
-
include
gauche/static.h
beforegauche.h
#include <gauche/static.h> #include <gauche.h>
-
call
SCM_INIT_STATIC()
frommain()
, instead ofGC_INIT()
andScm_INIT()
.int main() { : SCM_INIT_STATIC(); : }