]>
Commit | Line | Data |
---|---|---|
1 | #!/usr/bin/env bash | |
2 | ||
3 | # Cycript - The Truly Universal Scripting Language | |
4 | # Copyright (C) 2009-2016 Jay Freeman (saurik) | |
5 | ||
6 | # GNU Affero General Public License, Version 3 {{{ | |
7 | # | |
8 | # This program is free software: you can redistribute it and/or modify | |
9 | # it under the terms of the GNU Affero General Public License as published by | |
10 | # the Free Software Foundation, either version 3 of the License, or | |
11 | # (at your option) any later version. | |
12 | # | |
13 | # This program is distributed in the hope that it will be useful, | |
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | # GNU Affero General Public License for more details. | |
17 | # | |
18 | # You should have received a copy of the GNU Affero General Public License | |
19 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 | # }}} | |
21 | ||
22 | set -e | |
23 | ||
24 | cd "${0%%/*}" | |
25 | ||
26 | flags=("$@") | |
27 | ccf=(-g0 -O3) | |
28 | ||
29 | function path() { | |
30 | xcodebuild -sdk "$1" -version Path | |
31 | } | |
32 | ||
33 | xcs=$(xcode-select --print-path) | |
34 | mac=$(path macosx) | |
35 | xct="${xcs}/Toolchains/XcodeDefault.xctoolchain/usr/lib" | |
36 | ||
37 | system=1 | |
38 | ||
39 | function configure() { | |
40 | local dir=$1 | |
41 | local sdk=$2 | |
42 | local arc=$3 | |
43 | local min=$4 | |
44 | local ffi=$5 | |
45 | local cpf=$6 | |
46 | local ldf=$7 | |
47 | local obc=$8 | |
48 | shift 8 | |
49 | ||
50 | set -- "$@" --enable-static --with-pic | |
51 | ||
52 | cc=$(xcrun --sdk "${sdk}" -f clang) | |
53 | cxx=$(xcrun --sdk "${sdk}" -f clang++) | |
54 | ||
55 | flg="-arch ${arc} ${min}" | |
56 | flg+=" -isysroot $(path "${sdk}")" | |
57 | ||
58 | rm -rf build."${dir}" | |
59 | mkdir build."${dir}" | |
60 | cd build."${dir}" | |
61 | ||
62 | if "${ffi}"; then | |
63 | cpf+=" -I../libffi.${arch}/include" | |
64 | ldf+=" -L../libffi.${arch}/.libs" | |
65 | fi | |
66 | ||
67 | cpf+=" -I../libuv/include" | |
68 | ldf+=" -L../libuv.${arch}/.libs" | |
69 | ||
70 | ../configure --enable-maintainer-mode "${flags[@]}" --prefix="/usr" "$@" \ | |
71 | --with-libclang="-rpath ${xct} ${xct}/libclang.dylib" \ | |
72 | CC="${cc} ${flg}" CXX="${cxx} ${flg}" OBJCXX="${cxx} ${flg}" \ | |
73 | CFLAGS="${ccf[*]}" CXXFLAGS="${ccf[*]}" OBJCXXFLAGS="${ccf[*]} ${obc}" \ | |
74 | CPPFLAGS="${cpf}" LDFLAGS="${ldf}" CY_SYSTEM="$((1<<system++))" | |
75 | ||
76 | cd .. | |
77 | } | |
78 | ||
79 | for arch in i386 x86_64; do | |
80 | configure "osx-${arch}" "${mac}" "${arch}" "-mmacosx-version-min=10.6" \ | |
81 | false "-I../readline.osx" "-L../readline.osx" "" \ | |
82 | --with-python=/usr/bin/python-config | |
83 | done | |
84 | ||
85 | for arch in i386 x86_64; do | |
86 | configure "sim-${arch}" iphonesimulator "${arch}" "-mios-simulator-version-min=4.0" \ | |
87 | true "" "" "-fobjc-abi-version=2 -fobjc-legacy-dispatch" \ | |
88 | --disable-console | |
89 | done | |
90 | ||
91 | for arch in armv6 armv7 armv7s arm64; do | |
92 | cpf="" | |
93 | ldf="" | |
94 | ||
95 | flg=() | |
96 | if [[ ${arch} == arm64 ]]; then | |
97 | cpf+=" -I../extra.${arch}" | |
98 | cpf+=" -I../readline.${arch}" | |
99 | ldf+=" -L../readline.${arch}" | |
100 | elif [[ ${arch} != armv6 ]]; then | |
101 | flg+=(--disable-console) | |
102 | else | |
103 | flg+=(LTLIBGCC="-lgcc_s.1") | |
104 | cpf+=" -include ${PWD}/xcode.h" | |
105 | cpf+=" -mllvm -arm-reserve-r9" | |
106 | cpf+=" -I../sysroot.ios/usr/include" | |
107 | ldf+=" -L../sysroot.ios/usr/lib" | |
108 | fi | |
109 | ||
110 | ldf+=" -Wl,-dead_strip" | |
111 | ldf+=" -Wl,-no_dead_strip_inits_and_terms" | |
112 | ||
113 | if [[ ${arch} == arm64 ]]; then | |
114 | min=7.0 | |
115 | else | |
116 | min=2.0 | |
117 | ldf+=" -Wl,-segalign,4000" | |
118 | #cpf+=" -mthumb" | |
119 | fi | |
120 | ||
121 | configure "ios-${arch}" iphoneos "${arch}" "-miphoneos-version-min=${min}" \ | |
122 | true "${cpf[*]}" "${ldf[*]}" "" \ | |
123 | --host=arm-apple-darwin10 LFLAGS="--ecs --meta-ecs" "${flg[@]}" | |
124 | done |