diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2022-02-14 10:58:01 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2022-02-14 10:58:01 +0000 |
| commit | 441365b3886967465da4f9201e8dfdfc059931e4 (patch) | |
| tree | e2ea12ac9005629b76a822b4d7a12549557c6847 /src/main.cpp | |
| parent | f56114719081164fb38a700dacc298173b0f34dc (diff) | |
Set the macOS minimum version to 12 for ARM CPUs
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index fe56d451f..27c71c8eb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -485,7 +485,7 @@ i32 linker_stage(lbGenerator *gen) { // NOTE: If you change this (although this minimum is as low as you can go with Odin working) // make sure to also change the 'mtriple' param passed to 'opt' #if defined(GB_CPU_ARM) - " -mmacosx-version-min=11.0.0 " + " -mmacosx-version-min=12.0.0 " #else " -mmacosx-version-min=10.8.0 " #endif |