This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| downloads [2017/08/17 20:07] – [Binaries for Windows] macke | downloads [2017/08/19 20:45] (current) – [Source Code on Bitbucket] macke | ||
|---|---|---|---|
| Line 17: | Line 17: | ||
| * lua scripting language V 5.0 or higher | * lua scripting language V 5.0 or higher | ||
| - | The compilation steps are the following: | + | The Linux compilation steps are the following: |
| - | - Download the source code package | + | - Download the source code package |
| - | - Extract the archive | + | - Extract the archive |
| - Compile: '' | - Compile: '' | ||
| - Test the package with '' | - Test the package with '' | ||
| + | |||
| + | == Compilation steps for MAC users == | ||
| + | |||
| + | * Install the Home Brew package manager | ||
| + | * brew install gcc@6 | ||
| + | * brew install lua | ||
| + | * The new c compilers should be at: | ||
| + | * cd / | ||
| + | * Download https:// | ||
| + | * Edit MakeFile: | ||
| + | The lines | ||
| + | CC = gcc | ||
| + | CXX = g++ | ||
| + | |||
| + | should point to the binaries in / | ||
| + | CC = / | ||
| + | CXX = / | ||
| + | |||
| + | * Copy the compiled executable quad somewhere appropriate. You might want to add the directory to your path so you can execute | ||
| + | * vim ~/ | ||
| + | and add the line | ||
| + | export PATH=“< | ||
| + | where < | ||
| + | |||
| + | |||
| + | |||