diff options
Diffstat (limited to 'build1')
-rw-r--r-- | build1 | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/build1 b/build1 index 2419ce4a..3aeb52ee 100644 --- a/build1 +++ b/build1 @@ -1,6 +1,8 @@ #!/bin/sh # Alternative to build0 that supports a --until flag to include only a subset # of layers. +# $ ./build1 --until 050 +UNTIL_LAYER=${2:-zzz} set -v set -e # stop immediately on error @@ -18,10 +20,6 @@ export CFLAGS="$CFLAGS -Wall -Wextra -ftrapv -fno-strict-aliasing" # (layers) | | # tangle $CXX -# can also be called with a layer to only build until -# $ ./build1 --until 050 -UNTIL_LAYER=${2:-zzz} - $CXX $CFLAGS enumerate/enumerate.cc -o enumerate/enumerate cd tangle |