diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-08-20 22:33:40 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-08-20 22:33:40 +0100 |
commit | 6e2db6825d4ff4b57be3086f654a84cc9ff64bcf (patch) | |
tree | b9a7bb71ff55f7ef6d34ab90574ed86cd1f39b43 /build.sh | |
parent | 2369185b269164c9fd3cc888dbde117192d08bff (diff) | |
download | alisp-6e2db6825d4ff4b57be3086f654a84cc9ff64bcf.tar.gz alisp-6e2db6825d4ff4b57be3086f654a84cc9ff64bcf.tar.bz2 alisp-6e2db6825d4ff4b57be3086f654a84cc9ff64bcf.zip |
Stable vector implementation
Stable vectors will be used in the lisp runtime to implement actual
vectors, instead of using the disgusting lvec trick. This way we at
least can get attributes about the vector through one pointer hop.
Diffstat (limited to 'build.sh')
-rw-r--r-- | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ #!/usr/bin/env sh CFLAGS="-Wall -Wextra -std=c11 -ggdb -fsanitize=address -fsanitize=undefined" -SRC="ivec.c symtable.c tag.c constructor.c sys.c main.c" +SRC="vec.c ivec.c symtable.c tag.c constructor.c sys.c main.c" OUT="alisp.out" set -xe |