]> git.saurik.com Git - cycript.git/blame - apple-configure.sh
Parse scope and symbol colon operators, from Ruby.
[cycript.git] / apple-configure.sh
CommitLineData
944dc32c 1#!/usr/bin/env bash
800811a0 2
a93f15c0 3# Cycript - Optimizing JavaScript Compiler/Runtime
c1d3e52e 4# Copyright (C) 2009-2015 Jay Freeman (saurik)
a93f15c0 5
f95d2598 6# GNU Affero General Public License, Version 3 {{{
a93f15c0 7#
f95d2598
JF
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.
a93f15c0 12#
f95d2598
JF
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
a93f15c0 15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f95d2598 16# GNU Affero General Public License for more details.
a93f15c0 17#
f95d2598
JF
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/>.
a93f15c0
JF
20# }}}
21
800811a0
JF
22set -e
23
a93f15c0 24cd "${0%%/*}"
800811a0 25
81d7bcec
JF
26if ! which aclocal; then
27 touch aclocal.m4; fi
28if ! which autoconf; then
29 touch configure.ac; fi
30if ! which automake; then
31 touch Makefile.in; fi
32if ! which autoheader; then
33 touch config.h.in; fi
800811a0 34
a93f15c0 35flags=("$@")
ae1b611e 36ccf=(-g0 -O3)
a93f15c0
JF
37
38function path() {
39 xcodebuild -sdk "$1" -version Path
40}
41
42xcs=$(xcode-select --print-path)
43mac=$(path macosx)
8d20f0f1
JF
44xct="${xcs}/Toolchains/XcodeDefault.xctoolchain/usr/lib"
45
46system=0
a93f15c0
JF
47
48function configure() {
49 local dir=$1
50 local sdk=$2
ae1b611e
JF
51 local arc=$3
52 local min=$4
53 local ffi=$5
54 local cpf=$6
55 local ldf=$7
56 local obc=$8
57 shift 8
58
59 set -- "$@" --enable-static --with-pic
a93f15c0 60
4af4085c
JF
61 cc=$(xcrun --sdk "${sdk}" -f clang)
62 cxx=$(xcrun --sdk "${sdk}" -f clang++)
ae1b611e
JF
63
64 flg="-arch ${arc} ${min}"
a93f15c0
JF
65 flg+=" -isysroot $(path "${sdk}")"
66
67 rm -rf build."${dir}"
68 mkdir build."${dir}"
69 cd build."${dir}"
5239f927 70
ae1b611e
JF
71 if "${ffi}"; then
72 cpf+=" -I../libffi.${arch}/include"
73 ldf+=" -L../libffi.${arch}/.libs"
74 fi
5239f927 75
ae1b611e
JF
76 cpf+=" -I../libuv/include"
77 ldf+=" -L../libuv.${arch}/.libs"
a93f15c0 78
ae1b611e 79 ../configure --enable-maintainer-mode "${flags[@]}" --prefix="/usr" "$@" \
8d20f0f1 80 --with-libclang="-rpath ${xct} ${xct}/libclang.dylib" \
ae1b611e
JF
81 CC="${cc} ${flg}" CXX="${cxx} ${flg}" OBJCXX="${cxx} ${flg}" \
82 CFLAGS="${ccf[*]}" CXXFLAGS="${ccf[*]}" OBJCXXFLAGS="${ccf[*]} ${obc}" \
8d20f0f1 83 CPPFLAGS="${cpf}" LDFLAGS="${ldf}" CY_SYSTEM="$((1<<system++))"
a93f15c0 84
ae1b611e 85 cd ..
a93f15c0
JF
86}
87
a412fff4 88for arch in i386 x86_64; do
ae1b611e
JF
89 configure "osx-${arch}" "${mac}" "${arch}" "-mmacosx-version-min=10.6" \
90 false "-I../readline.osx" "-L../readline.osx" ""
a412fff4
JF
91done
92
3615a2f7 93for arch in i386 x86_64; do
ae1b611e
JF
94 configure "sim-${arch}" iphonesimulator "${arch}" "-mios-simulator-version-min=4.0" \
95 true "" "" "-fobjc-abi-version=2 -fobjc-legacy-dispatch" \
96 --disable-console
abc804fa
JF
97done
98
0ad8029f 99for arch in armv6 armv7 armv7s arm64; do
ae1b611e
JF
100 cpf=""
101 ldf=""
0ad8029f 102
3615a2f7 103 flg=()
0ad8029f 104 if [[ ${arch} != armv6 ]]; then
3615a2f7 105 flg+=(--disable-console)
0ad8029f 106 else
e5f0ecf9 107 flg+=(LTLIBGCC="-lgcc_s.1")
a1cda481 108 cpf+=" -include ${PWD}/xcode.h"
e9b51ae0 109 cpf+=" -mllvm -arm-reserve-r9"
10d0e915 110 cpf+=" -I../sysroot.ios/usr/include"
0ad8029f 111 ldf+=" -L../sysroot.ios/usr/lib"
e9abea04
JF
112 fi
113
8c0927fb
JF
114 if [[ ${arch} == arm64 ]]; then
115 min=7.0
116 else
117 min=2.0
79e239bf 118 ldf+=" -Wl,-segalign,4000"
73fd6f57 119 #cpf+=" -mthumb"
8c0927fb
JF
120 fi
121
ae1b611e
JF
122 configure "ios-${arch}" iphoneos "${arch}" "-miphoneos-version-min=${min}" \
123 true "${cpf[*]}" "${ldf[*]}" "" \
124 --host=arm-apple-darwin10 LFLAGS="--ecs --meta-ecs" "${flg[@]}"
abc804fa 125done