This repository has been archived on 2025-11-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
alisp/build.sh
Aryadev Chavali 55293ae396 vec -> ivec
I'm going to implement a normal stable vector instead of an inline
vector so we have both options for use.  I think that's smarter than
just sticking to one.
2025-08-20 22:19:14 +01:00

10 lines
205 B
Bash

#!/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"
OUT="alisp.out"
set -xe
cc $CFLAGS -o $OUT $SRC;