summaryrefslogtreecommitdiff
path: root/miniany/README
diff options
context:
space:
mode:
Diffstat (limited to 'miniany/README')
-rw-r--r--miniany/README58
1 files changed, 40 insertions, 18 deletions
diff --git a/miniany/README b/miniany/README
index 137a88d..fcd9e06 100644
--- a/miniany/README
+++ b/miniany/README
@@ -1,22 +1,44 @@
-Building
---------
+# Building
+```
./build.sh cc tcc hosted d
./build.sh cc tcc freestanding d
+```
-Acknoledgments
---------------
-
-c4 - C in four functions
-minimalistic C compiler running on an emulator, inspiration for this
-project
-https://github.com/rswier/c4.git
-adaptions to provide switch and structs:
-https://github.com/rswier/c4/blob/switch-and-structs/c4.c: structs
-https://github.com/EarlGray/c4, a X86 JIT version of c4
-https://github.com/jserv/amacc: based on C4, JIT or native code, for ARM
-
-selfie
-C* self-hosting C compiler (also emulator, hypervisor) for RISCV,
-inspiration for what makes up a minimal C language,
-http://selfie.cs.uni-salzburg.at/
+# Running on c4:
+
+```
+tcc -O0 -g -o c4 c4.c
+./c4 cc.c < hello.c
+./c4 c4.c cc.c < hello.c
+./c4 c4.c c4.c cc.c < hello.c
+```
+
+# Acknoledgments and references
+
+* c4
+ * https://github.com/rswier/c4.git
+ c4 - C in four functions
+ minimalistic C compiler running on an emulator on the IR, inspiration
+ for this project
+ * https://github.com/rswier/c4/blob/switch-and-structs/c4.c:
+ c4 adaptions to provide switch and structs:
+ * https://github.com/EarlGray/c4: a X86 JIT version of c4
+ * https://github.com/jserv/amacc: based on C4, JIT or native code, for
+ ARM, quite well documented, also very nice list of compiler
+ resources on Github page
+
+* selfie
+ * http://selfie.cs.uni-salzburg.at/:
+ C* self-hosting C compiler (also emulator, hypervisor) for RISCV,
+ inspiration for what makes up a minimal C language
+
+* tiny.c
+ * http://www.iro.umontreal.ca/~felipe/IFT2030-Automne2002/Complements/tinyc.c
+
+* c.c in swieros: https://github.com/rswier/swieros.git
+
+* documentation
+ * "Compiler Construction", Niklaus Wirth
+ * https://github.com/DoctorWkt/acwj
+