Skip to content

Instantly share code, notes, and snippets.

View miyaki's full-sized avatar

Takashi Miyaki miyaki

  • tokyo
View GitHub Profile
@miyaki
miyaki / configure_liblo_iphone.sh
Last active June 11, 2017 11:07 — forked from mikewoz/configure_liblo_iphone.sh
configure static liblo for armv7, armv7s, arm64 (iOS7)
./configure \
--host="arm-apple-darwin" \
--enable-static \
--disable-shared \
--disable-dependency-tracking \
CC=`xcrun -f --sdk iphoneos clang` \
CXX=`xcrun -f --sdk iphoneos clang++` \
AR=`xcrun -f --sdk iphoneos ar` \
RANLIB=`xcrun -f --sdk iphoneos ranlib` \
NM=`xcrun -f --sdk iphoneos nm` \