Update README.md

This commit is contained in:
servostar 2024-06-04 21:54:23 +02:00 committed by GitHub
parent aa5d0b0710
commit f64e30e56b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 5 deletions

View File

@ -6,11 +6,16 @@ Gemstone is a programming language compiler written in C with lex and yacc.
### Windows 11 ### Windows 11
For setup instruction see issue #30 #### MSYS2
Install MSYS2 under Windows 11. Open the MingGW64 environment.
Requires: Install the following packages:
- Microsoft Build Tools 2022 (includes: CMake, MSVC) ```
- WinFlexBison [find it here](https://github.com/lexxmark/winflexbison) (needs to be in PATH) pacman -S mingw-w64-x86_64-gcc mingw-w64-x86_64-glib2 bison flex mingw-w64-x86_64-llvm cmake git make
```
Clone the repository and build the gemstone compiler:
```
cmake . && make release
```
### GNU/Linux ### GNU/Linux