diff options
author | Sam Bingner <sam@bingner.com> | 2018-10-12 16:47:06 -1000 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2018-10-12 16:47:06 -1000 |
commit | 24f6d59354df69788c96f26e8c046a50c383c886 (patch) | |
tree | ed2343230d45a634b15398dfa7a7e2c67a960aba /arch/iphoneos-arm64 | |
parent | 330f4f07f97d829f6337de5b20efb19e58bab319 (diff) |
Build environment changes
Diffstat (limited to 'arch/iphoneos-arm64')
-rw-r--r-- | arch/iphoneos-arm64/environ.sh | 5 | ||||
-rw-r--r-- | arch/iphoneos-arm64/firmware | 24 | ||||
-rw-r--r-- | arch/iphoneos-arm64/prefix | 1 | ||||
-rw-r--r-- | arch/iphoneos-arm64/strip | 18 | ||||
-rw-r--r-- | arch/iphoneos-arm64/target | 1 |
5 files changed, 0 insertions, 49 deletions
diff --git a/arch/iphoneos-arm64/environ.sh b/arch/iphoneos-arm64/environ.sh deleted file mode 100644 index 36d412804..000000000 --- a/arch/iphoneos-arm64/environ.sh +++ /dev/null @@ -1,5 +0,0 @@ -arm64-apple-darwin9-gcc() { - xcrun -sdk iphoneos gcc $@ -} -export -f arm64-apple-darwin9-gcc -export MACOSX_DEPLOYMENT_TARGET=10.5 diff --git a/arch/iphoneos-arm64/firmware b/arch/iphoneos-arm64/firmware deleted file mode 100644 index 3618678d4..000000000 --- a/arch/iphoneos-arm64/firmware +++ /dev/null @@ -1,24 +0,0 @@ -iPhone1,1_2.0_5A347 -iPhone1,2_2.0_5A347 -iPod1,1_2.0_5A347 -iPhone1,1_2.0.1_5B108 -iPhone1,2_2.0.1_5B108 -iPod1,1_2.0.1_5B108 -iPhone1,1_2.0.2_5C1 -iPhone1,2_2.0.2_5C1 -iPod1,1_2.0.2_5C1 -iPhone1,1_2.1_5F136 -iPhone1,2_2.1_5F136 -iPod1,1_2.1_5F137 -iPhone1,1_2.2_5G77 -iPhone1,2_2.2_5G77 -iPod1,1_2.2_5G77 -iPhone1,1_2.2.1_5H11 -iPhone1,2_2.2.1_5H11 -iPod1,1_2.2.1_5H11 -iPod2,1_2.2.1_5H11a -iPhone1,1_3.0_7A341 -iPhone1,2_3.0_7A341 -iPhone2,1_3.0_7A341 -iPod1,1_3.0_7A341 -iPod1,2_3.0_7A341 diff --git a/arch/iphoneos-arm64/prefix b/arch/iphoneos-arm64/prefix deleted file mode 100644 index 74e4e23b0..000000000 --- a/arch/iphoneos-arm64/prefix +++ /dev/null @@ -1 +0,0 @@ -/usr diff --git a/arch/iphoneos-arm64/strip b/arch/iphoneos-arm64/strip deleted file mode 100644 index c4801ca85..000000000 --- a/arch/iphoneos-arm64/strip +++ /dev/null @@ -1,18 +0,0 @@ -find "${PKG_DEST}" -type f \( -perm -0100 -o -name '*.dylib' -o -name '*.so' \) -print0 | while read -r -d $'\0' bin; do - case "$(file "${bin}")" in (\ - *': Mach-O fat file with '*([0-9])' architecture' |\ - *': '?(setuid )?(setgid )'Mach-O executable acorn' |\ - *': Mach-O dynamically linked shared library acorn' |\ - *': Mach-O bundle acorn'\ - );; (*) continue;; esac - - if arm64-apple-darwin9-otool -hv "${bin}" | grep DYLIB_STUB &>/dev/null; then - continue; fi - if grep $'\xfa\xde\x0c\x01' "${bin}" &>/dev/null; then - continue; fi - - perms=$(stat --format=%a "${bin}") - chmod 755 "${bin}" - "${PKG_BASE}/util/ldid" -S"${PKG_BASE}/arch/iphoneos-arm/entitlement.xml" "${bin}" - chmod "${perms}" "${bin}" -done diff --git a/arch/iphoneos-arm64/target b/arch/iphoneos-arm64/target deleted file mode 100644 index 3631f7228..000000000 --- a/arch/iphoneos-arm64/target +++ /dev/null @@ -1 +0,0 @@ -arm64-apple-darwin9 |