Update build options
- optimized build - remove options with good default values (static is deprecated, optimize is #t by default) - lower debug level
This commit is contained in:
parent
563e7c37f6
commit
6282e80f50
1 changed files with 2 additions and 6 deletions
8
build.ss
8
build.ss
|
@ -7,7 +7,7 @@
|
|||
"uniplot/lineplot"))
|
||||
|
||||
(def bin-build-spec
|
||||
'((exe: "uniplot")))
|
||||
'((optimized-exe: "uniplot")))
|
||||
|
||||
(def srcdir
|
||||
(path-normalize (path-directory (this-source-file))))
|
||||
|
@ -16,15 +16,11 @@
|
|||
(match args
|
||||
(["lib"]
|
||||
(make srcdir: srcdir
|
||||
optimize: #t
|
||||
debug: 'src
|
||||
static: #t
|
||||
debug: 'env
|
||||
lib-build-spec))
|
||||
(["bin"]
|
||||
(make srcdir: srcdir
|
||||
optimize: #t
|
||||
debug: #f
|
||||
static: #t
|
||||
build-deps: "build-deps-bin"
|
||||
bin-build-spec))
|
||||
([]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue