On macOS use gcc-7 from homebrew instead of gcc-clang.

To install this version of gcc:

~$ brew install gcc@7

Does not seem to work with gcc-8 (missing headers…).
issue#70
Stéphane Adjemia (Scylla) 2018-12-20 14:33:57 +01:00
parent ea76bc8636
commit 8b81474a2e
Signed by untrusted user who does not match committer: stepan
GPG Key ID: A6D44CB9C64CE77B
1 changed files with 1 additions and 0 deletions

View File

@ -2236,6 +2236,7 @@ ModelTree::compileDll(const string &basename, const string &static_or_dynamic, c
else
{
// macOS
compiler = "/usr/local/bin/gcc-7";
string archs = (mexext == "maci" ? "i386" : "x86_64");
flags << " -fno-common -arch " << archs << " -mmacosx-version-min=10.7 -Wl,-twolevel_namespace -undefined error -bundle";
libs += " -lm -lstdc++";