diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-07-09 23:04:47 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-07-09 23:04:54 +0200 |
commit | 2b0228cec24e49369634cb8239a1939f0fad7e2e (patch) | |
tree | 18d6f926ae47da1485e651896bfc0a3c06d7a4c0 /README | |
parent | 2b06086473b466fe989ce8629f941b9539ba1095 (diff) |
Disallow keywords as identifier names
Diffstat (limited to 'README')
-rw-r--r-- | README | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 |