For Development HEAD DRAFTSearch (procedure/syntax/module):

9.7 gauche.config - Configuration parameters

Module: gauche.config

This module allows the Scheme program to access the configuration information the same as you can get from the gauche-config program.

Function: gauche-config option

{gauche.config} Returns the configured value of the option.

See the manual page of gauche-config (see gauche-config - Query configuration), or run gauche-config without any argument from the shell, to find out the valid options.

(gauche-config "--cc")
  ⇒ "gcc"
(gauche-config "-L")
  ⇒ "-L/usr/lib/gauche/0.6.5/i686-pc-linux-gnu"
(gauche-config "-l")
  ⇒ "-ldl -lcrypt -lm -lpthread"


For Development HEAD DRAFTSearch (procedure/syntax/module):
DRAFT