default to usz=64

This commit is contained in:
dzaima 2024-10-09 03:30:14 +03:00
parent 3ed6241609
commit 93292cc002
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ For native builds, targeted extensions are determined by `/proc/cpuinfo` (or `sy
- `REPLXX=0` - disable REPLXX - `REPLXX=0` - disable REPLXX
- `singeli=0` - disable usage of Singeli - `singeli=0` - disable usage of Singeli
- `FFI=0` - disable `•FFI`, thus not depending on libffi - `FFI=0` - disable `•FFI`, thus not depending on libffi
- `usz=64` - support arrays with length over 2<sup>32</sup> - `usz=32` - use 32-bit integers for array lengths (default is 64-bit)
<!-- separator --> <!-- separator -->
- `f=...` - add extra C compiler flags for CBQN file compilation - `f=...` - add extra C compiler flags for CBQN file compilation
- `lf=...` - add extra linking flags (`LDFLAGS` is a synonym) - `lf=...` - add extra linking flags (`LDFLAGS` is a synonym)

View File

@ -59,7 +59,7 @@ opts ← ⟨
1, "singeli", 0, "Enable Singeli usage" 1, "singeli", 0, "Enable Singeli usage"
1, "replxx", 0, "Enable REPLXX"@+10 1, "replxx", 0, "Enable REPLXX"@+10
0, "usz", "32", "Size of array length fields in bits; 32 or 64 (default: 32)" 0, "usz", "64", "Size of array length fields in bits; 32 or 64 (default: 64)"
1, "c", 0, "Disable some default flags" 1, "c", 0, "Disable some default flags"
1, "O3", @, "Use '-O3'; On by default unless 'c=1'" 1, "O3", @, "Use '-O3'; On by default unless 'c=1'"
1, "native", @, "Use '-march=native'" 1, "native", @, "Use '-march=native'"