]> git.saurik.com Git - ldid.git/commitdiff
Fix compilation via macOS 10.12 targetting iOS 11.
authorJay Freeman (saurik) <saurik@saurik.com>
Sat, 13 Jan 2018 18:31:04 +0000 (10:31 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Sat, 13 Jan 2018 18:31:04 +0000 (10:31 -0800)
ldid.cpp
make.sh

index 6a16aa8b98fd64702903914ae0528dc460056367..7d933b6218e73b0a7bc61b54e32ae3c5229d9564 100644 (file)
--- a/ldid.cpp
+++ b/ldid.cpp
@@ -2405,7 +2405,7 @@ static Hash Sign(const uint8_t *prefix, size_t size, std::streambuf &buffer, Has
     auto data(temp.str());
 
     HashProxy proxy(hash, save);
-    return Sign(data.data(), data.size(), proxy, identifier, entitlements, requirements, key, slots, flags, platform, percent);
+    return Sign(data.data(), data.size(), proxy, identifier, entitlements, requirements, key, slots, flags, platform, progress);
 }
 
 Bundle Sign(const std::string &root, Folder &folder, const std::string &key, std::map<std::string, Hash> &remote, const std::string &requirements, const Functor<std::string (const std::string &, const std::string &)> &alter, const Progress &progress) {
diff --git a/make.sh b/make.sh
index d574ae7b898e48cf88b2fd94e36dcc68f133a816..d88a8b0555e45216454c69aa5d79a119019594ab 100755 (executable)
--- a/make.sh
+++ b/make.sh
@@ -10,16 +10,16 @@ else
     shift
 fi
 
+export DEVELOPER_DIR=/Applications/Xcode-5.1.1.app
+
 if "${ios}"; then
 
 out=ios
-sudo xcode-select --switch /Applications/Xcode-4.6.3.app
-flags=(cycc -- -miphoneos-version-min=2.0 -arch armv6)
+flags=(cycc -- -miphoneos-version-min=2.0 -arch armv6 -arch arm64)
 
 else
 
 out=out
-sudo xcode-select --switch /Applications/Xcode-5.1.1.app
 
 if which xcrun &>/dev/null; then
     flags=(xcrun -sdk macosx g++)