Previous: Using extension packages, Up: Programming in Gauche [Contents][Index]
When you want to distribute your Gauche scripts or applications, the users need to install Gauche runtime on their machine. Although it is always the case for any language implementations—you need Java runtime to run Java applications, or C runtime to run C applications—it may be an extra effort to ask users to install not-so-standard language runtimes.
To ease distribution of Gauche applications, you can create a stand-alone executable. It statically links entire Gauche system so that it runs by just copying the executable file.
To generate a standalone executable, just give your script file to the tools/build-standalone script, which is installed as a part of Gauche.
gosh tools/build-standalone yourscript.scm
It will create an executable file yourscript
(or yourscript.exe
on Windows) in the current directory.
To specify the output name different from the script name,
give -o
option:
gosh tools/build-standalone -o yourcommand yourscript.scm
When your script needs supporting library files, you should list those files as well:
gosh tools/build-standalone yourscript.scm lib/library1.scm lib/library2.scm
The library file paths need to be relative to the respective load path.
See the explanation of -I
option below.
There are a few things you should be aware of.
ldd
on most Unix systems and MinGW or otool -L
on OSX,
on the generated standalone binaries.
You may want to ensure the users have required libraries.
-D GAUCHE_STATIC_EXCLUDE_GDBM
flag to tools/build-standalone
.
It makes tools/build-standalone
not to link gdbm (and your script won’t
be able to use it).
rfc.tls.mbed
module by giving
-D GAUCHE_STATIC_EXCLUDE_MBED
flag to tools/build-standalone
.
Create a stand-alone binary to execute a Gauche program in script-file.
It is executed as if it is run as gosh script-file
, with a few
differences.
The main thing is that since script-file is no longer
loaded from file, code that references paths relative to script-file won’t
work. One example is (add-load-path dir :relative)
(see Loading Scheme file). Auxiliary library files required by
script-file must be explicitly
listed as library-file …, so that
they are bundled together into the executable.
The following command-line options are recognized.
Specifies output executable filename. When omitted, the basename of
script-file without extension is used.
(Or, on Windows, swapping extension with .exe
).
Add C preprocessor definitions while compiling the generated C code.
An important use case of this option is to exclude gdbm dependency
from the generated binaries, by specifying
-D GAUCHE_STATIC_EXCLUDE_GDBM
. Note that you need a whitespace
between -D
and var.
This option can be specified multiple times.
Specifies the load path where library-file … are searched.
The names given to library-file must match how they are load
ed
or use
d. If such paths are not relative to the directory
you run tools/build-standalone
, you have to tell where to find
those libraries with this option.
For example, suppose you have this structure:
project/src/ +----- main.scm | (use myscript.util) +----- myscript/util.scm (define-module myscript.util ...)
If you run tools/build-standalone
in the directory as src,
you can just say this:
gosh tools/build-standalone main.scm myscript/util.scm
But if you run it under project, you need to say this:
gosh tools/build-standalone -I src src/main.scm myscript/util.scm
Another example; you have a separate library directory:
project/ +----- src/main.scm | (use myscript.util) +----- lib/myscript/util.scm (define-module myscript.util ...)
If you run tools/build-standalone
in src, you say this:
gosh tools/build-standalone -I ../lib main.scm myscript/util.scm
Or, if you run it in project, you say this:
gosh tools/build-standalone -I lib src/main.scm myscript/util.scm
This option can be specified multiple times.
These tells tools/build-standalone
where to find Gauche C headers
and static libraries.
If you’ve installed Gauche on your system, tools/build-standalone
automatically finds these from the installed directory and you don’t
need to worry about them. Use these option only when
you need to use Gauche runtime that’s not installed.
Previous: Using extension packages, Up: Programming in Gauche [Contents][Index]