From 6282e80f506469a98b04dfda78036bcec119651e Mon Sep 17 00:00:00 2001 From: Dimitri Lozeve Date: Fri, 8 Sep 2023 17:49:23 +0200 Subject: [PATCH] Update build options - optimized build - remove options with good default values (static is deprecated, optimize is #t by default) - lower debug level --- build.ss | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/build.ss b/build.ss index c505368..a8797b1 100755 --- a/build.ss +++ b/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)) ([]