diff options
author | Joe George <joe@zeroc.com> | 2021-01-12 09:40:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-12 09:40:55 -0500 |
commit | b66b9f36213ef01ef164248f0db0cebb749cd984 (patch) | |
tree | e73f0e85573b572c0eefd2a0624cb35672547990 | |
parent | Fixed minor Xcode projet build warning (diff) | |
download | ice-b66b9f36213ef01ef164248f0db0cebb749cd984.tar.bz2 ice-b66b9f36213ef01ef164248f0db0cebb749cd984.tar.xz ice-b66b9f36213ef01ef164248f0db0cebb749cd984.zip |
Add support for macOS with Apple Silicon (#1235)
-rw-r--r-- | config/Make.rules.Darwin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/Make.rules.Darwin b/config/Make.rules.Darwin index 19ed0e35f3c..2c914e441f6 100644 --- a/config/Make.rules.Darwin +++ b/config/Make.rules.Darwin @@ -5,7 +5,7 @@ supported-platforms = macosx iphoneos iphonesimulator macosx_ar = libtool -macosx_cppflags = -mmacosx-version-min=10.14 -arch x86_64 +macosx_cppflags = -mmacosx-version-min=10.14 macosx_ldflags = $(macosx_cppflags) \ $(if $(filter yes, $(allow-undefined-symbols)),-undefined dynamic_lookup,) macosx_targetdir = $(if $(filter %/build,$5),/macosx) @@ -21,7 +21,7 @@ iphoneos_targetdir = $(if $(filter %/build,$5),/iphoneos) iphonesimulator_ar = libtool iphonesimulator_cc = xcrun -sdk iphonesimulator clang iphonesimulator_cxx = xcrun -sdk iphonesimulator clang++ -iphonesimulator_cppflags = -mios-simulator-version-min=8.0 -arch i386 -arch x86_64 +iphonesimulator_cppflags = -mios-simulator-version-min=8.0 iphonesimulator_ldflags = $(iphonesimulator_cppflags) iphonesimulator_configs = %xcodesdk iphonesimulator_targetdir = $(if $(filter %/build,$5),/iphonesimulator) |