Change release process to use default mode

See #101
This commit is contained in:
Justine Tunney 2021-03-03 13:38:30 -08:00
parent 2134ffe005
commit 3573814e45
3 changed files with 8 additions and 3 deletions

View file

@ -2,6 +2,7 @@ int main(int argc, char *argv[]) {
int rc;
char *s;
FILE *f;
showcrashreports();
s = strdup(argv[0]);
s[0] = 'Z';
f = fopen("/dev/null", "w");

View file

@ -29,6 +29,7 @@ o/$(MODE)/test/libc/release/smoke.com.dbg: \
-nostdlib \
-nostdinc \
-mno-red-zone \
-fno-omit-frame-pointer \
-Wl,-T,o/$(MODE)/ape/ape.lds \
-include o/cosmopolitan.h \
test/libc/release/smoke.c \
@ -56,6 +57,7 @@ o/$(MODE)/test/libc/release/smokecxx.com.dbg: \
-nostdlib \
-nostdinc \
-mno-red-zone \
-fno-omit-frame-pointer \
-Wl,-T,o/$(MODE)/ape/ape.lds \
-include o/cosmopolitan.h \
test/libc/release/smokecxx.cc \
@ -80,6 +82,7 @@ o/$(MODE)/test/libc/release/smokeansi.com.dbg: \
-nostdlib \
-nostdinc \
-mno-red-zone \
-fno-omit-frame-pointer \
-Wl,-T,o/$(MODE)/ape/ape.lds \
-include o/cosmopolitan.h \
test/libc/release/smoke.c \