macOS/use_dll: drop -mmacosx-version-min=10.9 flag

The MEX files are not intended for distribution to other systems.
issue#70
Sébastien Villemot 2021-01-12 17:34:44 +01:00
parent c91178e3e3
commit a0d12310cb
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 1 deletions

View File

@ -2050,7 +2050,7 @@ ModelTree::compileMEX(const string &basename, const string &funcname, const stri
exit(EXIT_FAILURE);
}
#endif
flags << " -fno-common -mmacosx-version-min=10.9 -Wl,-twolevel_namespace -undefined error -bundle";
flags << " -fno-common -Wl,-twolevel_namespace -undefined error -bundle";
libs += " -lm -lstdc++";
}
}