mirror of
https://github.com/radareorg/radare2
synced 2026-08-22 20:23:32 -04:00
10 lines
339 B
Bash
Executable file
10 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
|