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"))
|
"uniplot/lineplot"))
|
||||||
|
|
||||||
(def bin-build-spec
|
(def bin-build-spec
|
||||||
'((exe: "uniplot")))
|
'((optimized-exe: "uniplot")))
|
||||||
|
|
||||||
(def srcdir
|
(def srcdir
|
||||||
(path-normalize (path-directory (this-source-file))))
|
(path-normalize (path-directory (this-source-file))))
|
||||||
|
@ -16,15 +16,11 @@
|
||||||
(match args
|
(match args
|
||||||
(["lib"]
|
(["lib"]
|
||||||
(make srcdir: srcdir
|
(make srcdir: srcdir
|
||||||
optimize: #t
|
debug: 'env
|
||||||
debug: 'src
|
|
||||||
static: #t
|
|
||||||
lib-build-spec))
|
lib-build-spec))
|
||||||
(["bin"]
|
(["bin"]
|
||||||
(make srcdir: srcdir
|
(make srcdir: srcdir
|
||||||
optimize: #t
|
|
||||||
debug: #f
|
debug: #f
|
||||||
static: #t
|
|
||||||
build-deps: "build-deps-bin"
|
build-deps: "build-deps-bin"
|
||||||
bin-build-spec))
|
bin-build-spec))
|
||||||
([]
|
([]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue