diff options
| author | GreenSwede <42186507+GreenSwede@users.noreply.github.com> | 2022-05-21 19:37:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-21 13:37:46 -0400 |
| commit | 40f13ff2e6467e9c2e5d802d8b91e88cb9dbdadd (patch) | |
| tree | ed5fa6f0a6649b5d2bf2924a163b96603b266648 | |
| parent | d1357b902d6a9a1038e6e4b572ed0824a93592f4 (diff) | |
Update BUILDING.md (#364)
Add -O2 flag to text instructions since it was fixed in #342 commit db2fa61
| -rw-r--r-- | BUILDING.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BUILDING.md b/BUILDING.md index 726b8a99c..0a444ca4a 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -41,9 +41,9 @@ cp /usr/local/lib/libGLEW.a external cd soh # Extract the assets/Compile the exporter/Run the exporter -make setup -j$(nproc) OPTFLAGS=-O0 DEBUG=0 +make setup -j$(nproc) OPTFLAGS=-O2 DEBUG=0 # Compile the code -make -j $(nproc) OPTFLAGS=-O0 DEBUG=0 +make -j $(nproc) OPTFLAGS=-O2 DEBUG=0 ``` # Compatible Roms |
