diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-01-20 17:35:24 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-01-20 17:35:24 +0100 |
commit | 6c9cc1d83ef9147daf73c719453381e2b48088cc (patch) | |
tree | 17263fbad8ecdcec86ac0448f4660de77f3a0f68 | |
parent | c034ebb36e5d23ba1a4e7e123c7dce4f3ea7bba9 (diff) |
No need to to build test/ctor.cc into bootstrap binary.
-rwxr-xr-x | bootstrap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index 9e8cdca..052d8b7 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -6,7 +6,7 @@ set -e CXX=$(which $CXX) echo "Bootstrapping..." -$CXX -std=c++20 -Wall -O3 -Isrc -pthread src/bootstrap.cc ctor.cc test/ctor.cc -o ctor +$CXX -std=c++20 -Wall -O3 -Isrc -pthread src/bootstrap.cc ctor.cc -o ctor ./ctor $CXX -std=c++20 -Wall -O3 -Isrc -pthread ctor.cc test/ctor.cc -L$BUILDDIR -lctor -o ctor ./ctor configure --ctor-includedir=src --ctor-libdir=$BUILDDIR --build-dir=$BUILDDIR |