]>
Commit | Line | Data |
---|---|---|
ae1b611e JF |
1 | #!/usr/bin/env bash |
2 | ||
3 | # Cycript - Optimizing JavaScript Compiler/Runtime | |
4 | # Copyright (C) 2009-2015 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 | lib=$1 | |
25 | shift | |
26 | extra=("$@") | |
27 | ||
28 | archs=() | |
29 | function arch() { | |
30 | local arch=$1 | |
31 | local host=$2 | |
32 | local sdk=$3 | |
33 | local os=$4 | |
34 | local min=$5 | |
35 | shift 5 | |
36 | ||
37 | rm -rf "lib${lib}.${arch}" | |
38 | if ! isysroot=$(xcodebuild -sdk "${sdk}" -version Path); then | |
39 | return | |
40 | fi | |
41 | ||
42 | archs+=("${arch}") | |
43 | mkdir "lib${lib}.${arch}" | |
44 | ||
45 | flags=("${extra[@]}") | |
46 | flags+=(-isysroot "${isysroot}") | |
47 | flags+=(-m${os}-version-min="${min}") | |
48 | flags+=(-O3 -g3) | |
49 | ||
50 | if [[ ${arch} == armv* && ${arch} != armv6 ]]; then | |
51 | flags+=(-mthumb) | |
52 | fi | |
53 | ||
54 | cd "lib${lib}.${arch}" | |
55 | CC="clang -arch ${arch}" CXX="clang++ -arch ${arch}" CFLAGS="${flags[*]}" CPPFLAGS="${flags[*]} $*" ../lib"${lib}"/configure --host="${host}" --enable-static --disable-shared | |
56 | make -j5 | |
57 | cd .. | |
58 | } | |
59 | ||
60 | arch armv6 arm-apple-darwin10 iphoneos iphoneos 2.0 -mllvm -arm-reserve-r9 | |
61 | arch armv7 arm-apple-darwin10 iphoneos iphoneos 2.0 | |
62 | arch armv7s arm-apple-darwin10 iphoneos iphoneos 2.0 | |
63 | arch arm64 aarch64-apple-darwin11 iphoneos iphoneos 2.0 | |
64 | ||
65 | arch i386 i386-apple-darwin10 iphonesimulator ios-simulator 4.0 | |
66 | arch x86_64 x86_64-apple-darwin11 iphonesimulator ios-simulator 4.0 |