mirror of
https://github.com/Relintai/osxcross.git
synced 2025-02-03 22:45:56 +01:00
make x86_64h default to 10.8 instead of 10.9
This commit is contained in:
parent
18d5e5b28a
commit
44d7d0d07a
@ -167,7 +167,7 @@ However, there are several ways to override the default value:
|
||||
\>= 10.9 also defaults to `libc++` instead of `libstdc++`, this behavior
|
||||
can be overriden by explicitly passing `-stdlib=libstdc++` to clang.
|
||||
|
||||
x86\_64h defaults to `Mac OS X 10.9` and requires clang 3.5+.
|
||||
x86\_64h defaults to `Mac OS X 10.8` and requires clang 3.5+.
|
||||
x86\_64h = x86\_64 with optimizations for the Intel Haswell Architecture.
|
||||
|
||||
### LICENSE: ####
|
||||
|
@ -381,7 +381,7 @@ bool Target::setup() {
|
||||
|
||||
if (!OSNum.Num()) {
|
||||
if (haveArch(Arch::x86_64h)) {
|
||||
OSNum = OSVersion(10, 9); // Default to 10.9 for x86_64h
|
||||
OSNum = OSVersion(10, 8); // Default to 10.8 for x86_64h
|
||||
if (SDKOSNum < OSNum) {
|
||||
std::cerr << getArchName(arch) << " requires the SDK from "
|
||||
<< OSNum.Str() << " (or later)" << std::endl;
|
||||
|
Loading…
Reference in New Issue
Block a user