Skip to content

Files

Latest commit

 

History

History
49 lines (39 loc) · 1.25 KB

HOWTO-standalone-gauche.adoc

File metadata and controls

49 lines (39 loc) · 1.25 KB

How to build stand-alone Gauche executable

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.

Stripping down the size of the executable

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

Using Gauche API from statically linked C applications

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:

  1. include gauche/static.h before gauche.h

    #include <gauche/static.h>
    #include <gauche.h>
  2. call SCM_INIT_STATIC() from main(), instead of GC_INIT() and Scm_INIT().

    int main() {
      :
      SCM_INIT_STATIC();
      :
    }