summaryrefslogtreecommitdiff
path: root/build/src/build.bqn
diff options
context:
space:
mode:
authordzaima <dzaimagit@gmail.com>2023-06-05 22:54:51 +0300
committerdzaima <dzaimagit@gmail.com>2023-06-06 21:44:50 +0300
commit934a2b5ae3f8a79d3e936e4b4776b2c33e32a2ce (patch)
tree29ee31865bc89cbe1fdc54bf83a8ed2005bd8ae5 /build/src/build.bqn
parentd0b80d17bfbb6ad2a6578da2f08f2ffd7b7bd9c9 (diff)
rearrange things
Diffstat (limited to 'build/src/build.bqn')
-rwxr-xr-xbuild/src/build.bqn8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/src/build.bqn b/build/src/build.bqn
index 4bf415ee..61e68ce8 100755
--- a/build/src/build.bqn
+++ b/build/src/build.bqn
@@ -21,8 +21,8 @@ opts ← ⟨
⟨0, "j", @, "Number of parallel jobs"⟩
⟨1, "verbose", 0, "Log more things"⟩
⟨1, "rebuild", 0, "Forcibly rebuild everything"⟩
- ⟨1, "quiet", 0, "Don't output final status line (or any, combined with notui)"⟩
- ⟨1, "notui", @, "disable live-updating status display"∾@+10⟩
+ ⟨1, "notui", @, "disable live-updating status display"⟩
+ ⟨1, "quiet", 0, "Don't output final status line (or any, combined with notui)"∾@+10⟩
⟨1, "rebuild-singeli", 0, @⟩
⟨0, "CC", @, "The used C compiler"⟩
@@ -49,8 +49,8 @@ opts ← ⟨
⟨1, "emcc", 0, "Build with emscripten; outputs two files - BQN.wasm and BQN.js"⟩
⟨1, "clangd", 0, "Don't build, instead generate a compile_commands.json for clangd"∾@+10⟩
- ⟨1, "FFI", @, "Enable FFI through libffi; On by default, except for WASM builds"⟩
- ⟨1, "pkgconfig", 1, "Attempt to use pkg-config to find libffi flags"⟩
+ ⟨1, "FFI", @, "Enable FFI through libffi; On by default for linux, BSD, macos"⟩
+ ⟨1, "pkgconfig", 1, "Whether to attempt to use pkg-config to find libffi flags"⟩
⟨1, "singeli", 0, "Enable compilation with Singeli"⟩
⟨1, "replxx", 0, "Enable REPLXX"∾@+10⟩