mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
fixing test-build
This commit is contained in:
parent
351e6562a0
commit
cd0b6e32af
2 changed files with 8 additions and 4 deletions
|
@ -1,5 +1,9 @@
|
|||
(define-library (chibi win32 process-win32)
|
||||
(import (scheme base))
|
||||
(export %exit)
|
||||
(include-shared "process-win32")
|
||||
(include "process-win32.scm"))
|
||||
(export exit)
|
||||
(cond-expand
|
||||
(windows
|
||||
(include-shared "process-win32")
|
||||
(include "process-win32.scm"))
|
||||
(else
|
||||
(import (only (chibi process) exit)))))
|
||||
|
|
|
@ -30,7 +30,7 @@ CPPFLAGS=-DSEXP_USE_RESERVE_OPCODE=0
|
|||
CPPFLAGS=-DSEXP_USE_PROFILE_VM=1
|
||||
CPPFLAGS=-DSEXP_USE_UTF8_STRINGS=0
|
||||
CPPFLAGS=-DSEXP_USE_DISJOINT_STRING_CURSORS=0
|
||||
CPPFLAGS=-DSEXP_USE_STATIC_LIBS=1
|
||||
CFLAGS=-DSEXP_USE_STATIC_LIBS_NO_INCLUDE=0;CPPFLAGS=-DSEXP_USE_STATIC_LIBS=1
|
||||
CPPFLAGS=-DSEXP_USE_MUTABLE_STRINGS=0
|
||||
CPPFLAGS=-DSEXP_USE_STRICT_TOPLEVEL_BINDINGS=1
|
||||
CPPFLAGS=-DSEXP_USE_NO_FEATURES=1
|
||||
|
|
Loading…
Add table
Reference in a new issue