fixing test-build

This commit is contained in:
Alex Shinn 2018-01-25 01:07:49 +09:00
parent 351e6562a0
commit cd0b6e32af
2 changed files with 8 additions and 4 deletions

View file

@ -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)))))

View file

@ -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