aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-07-09 23:04:47 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-07-09 23:04:54 +0200
commit2b0228cec24e49369634cb8239a1939f0fad7e2e (patch)
tree18d6f926ae47da1485e651896bfc0a3c06d7a4c0 /README
parent2b06086473b466fe989ce8629f941b9539ba1095 (diff)
Disallow keywords as identifier names
Diffstat (limited to 'README')
-rw-r--r--README8
1 files changed, 6 insertions, 2 deletions
diff --git a/README b/README
index f30fdb1..624df36 100644
--- a/README
+++ b/README
@@ -19,11 +19,15 @@ Building the Oryx compiler is rather trivial. The steps are as follows:
the version of LLVM being utilized is 17.0.6. The compiler may work
with other versions, but it isn’t guaranteed.
-2. Clone the compiler repository.
+2. Install Gperf. It should be available in your systems package
+ manager, and if not then you can easily find instructions online to
+ build from source.
+
+3. Clone the compiler repository.
$ git clone https://github.com/Mango0x45/oryx.git
-3. Bootstrap and run the build script.
+4. Bootstrap and run the build script.
$ cc -o make make.c
$ ./make # See below for more details