mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-19 12:22:43 +00:00
Honor CPU in sys/ios-static arg
This commit is contained in:
parent
039d1fb7c4
commit
11dfabd0e4
@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
|
||||
export APPSTORE_FRIENDLY=1
|
||||
${SHELL} sys/ios-static.sh
|
||||
${SHELL} sys/ios-static.sh $@
|
||||
|
@ -1,5 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ "$1" = "-h" ]; then
|
||||
echo "Usage: sys/ios-static.sh [armv7|arm64]"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ -n "$1"]; then
|
||||
export CPU="$1"
|
||||
fi
|
||||
|
||||
if [ -z "${CPU}" ]; then
|
||||
export CPU=arm64
|
||||
export CPU=armv7
|
||||
|
Loading…
x
Reference in New Issue
Block a user