mirror of
https://github.com/radareorg/radare2.git
synced 2026-04-14 05:46:31 +02:00
11 lines
339 B
Bash
Executable File
11 lines
339 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:${PATH}
|
|
export PATH="$PWD/"sys:${PATH}
|
|
export CC="$PWD/"sys/ios-sdk-clang
|
|
export CFLAGS="-Oz -DNDEBUG"
|
|
# Default building in /var/jb/user prefix. use ROOTLESS=0 to rootful packaging
|
|
if [ -z "${ROOTLESS}" ]; then
|
|
ROOTLESS=1
|
|
fi
|