summaryrefslogtreecommitdiff
path: root/miniasm
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-10-28 12:30:37 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-10-28 12:30:37 +0200
commit8d0aece7ef6f5c4607d649f036cdaf95d0726768 (patch)
tree1765399770f6133fdb862c5caaab81cfe85c0a36 /miniasm
parent8c1ba415e11adf8228d9dffa8acb922aa03b74ca (diff)
downloadcompilertests-8d0aece7ef6f5c4607d649f036cdaf95d0726768.tar.gz
compilertests-8d0aece7ef6f5c4607d649f036cdaf95d0726768.tar.bz2
pcc works but throws warnings about '#pragma once', I know it is
not standard, but having only that in the langauge helps to avoid writing a C preprocessor
Diffstat (limited to 'miniasm')
-rw-r--r--miniasm/README1
1 files changed, 1 insertions, 0 deletions
diff --git a/miniasm/README b/miniasm/README
index ff2ef77..8700690 100644
--- a/miniasm/README
+++ b/miniasm/README
@@ -22,6 +22,7 @@ Building
gcc -I../minilib -I../miniemu -g -O0 -m32 -march=i386 -ffreestanding -Werror -Wall -Wno-return-type -pedantic -std=c89 -o miniasm *.c ../minilib/*.c
clang -I../minilib -I../miniemu -g -O0 -march=i386 -fno-builtin -std=c89 -Werror -Wall -Wno-return-type -o miniasm *.c ../minilib/*.c
tcc -I../minilib -I../miniemu -g -O0 -march=i386 -fno-builtin -std=c89 -Werror -Wall -Wno-return-type -o miniasm *.c ../minilib/*.c
+pcc -I../minilib -I../miniemu -g -O0 -march=i386 -fno-builtin -std=c89 -Wall -Wno-return-type -o miniasm *.c ../minilib/*.c
Usage
-----