cmake: move CMAKE_OSX_ARCHITECTURES out of the stdenv

This was initially introduced in 92188d9d17,
not clear how relevant this still is but i686 isn't supported anymore so
disable it explicitly.
This commit is contained in:
Daiderd Jordan
2020-01-31 21:52:13 +01:00
parent b984c227d2
commit 68513e4071
2 changed files with 3 additions and 1 deletions
@@ -50,6 +50,9 @@ cmakeConfigurePhase() {
# because we usually do not package the framework
cmakeFlags="-DCMAKE_FIND_FRAMEWORK=last $cmakeFlags"
# on macOS i686 was only relevant for 10.5 or earlier.
cmakeFlags="-DCMAKE_OSX_ARCHITECTURES=x86_64 $cmakeFlags"
# we never want to use the global macOS SDK
cmakeFlags="-DCMAKE_OSX_SYSROOT= $cmakeFlags"