aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2025-08-28 22:55:41 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2025-08-28 22:55:41 +0100
commitcc56a2ee2b5703f9ea5ac63a86870af188845c30 (patch)
tree2660c03c1c90ad069d44e29af4365bca572926aa /build.sh
parent66c64007317cf5b646c1f816463f4bc730e3b99f (diff)
downloadalisp-cc56a2ee2b5703f9ea5ac63a86870af188845c30.tar.gz
alisp-cc56a2ee2b5703f9ea5ac63a86870af188845c30.tar.bz2
alisp-cc56a2ee2b5703f9ea5ac63a86870af188845c30.zip
Still got some failures, but a basic stream implementation
Need to fix what's going on with the example in main.c using stdin.
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 544f623..6e42066 100644
--- a/build.sh
+++ b/build.sh
@@ -4,7 +4,7 @@ set -xe
CFLAGS="-Wall -Wextra -std=c11 -ggdb -fsanitize=address -fsanitize=undefined"
LINK=""
-LIB="sv.c vec.c symtable.c tag.c constructor.c sys.c"
+LIB="sv.c vec.c symtable.c tag.c constructor.c stream.c sys.c"
OUT="alisp.out"
build() {