Skip to content

Instantly share code, notes, and snippets.

@samdmarshall
Created February 24, 2014 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samdmarshall/9190189 to your computer and use it in GitHub Desktop.
Save samdmarshall/9190189 to your computer and use it in GitHub Desktop.
echo "${ACTION}"
if [ "${ACTION}" = "clean" ]; then
echo "Cleaning Libraries..."
rm -fd "${BUILD_DIR}/Universal/*"
fi
if [ "${ACTION}" = "build" ]; then
cd ${BUILD_DIR}/Universal
lipo -create libcapstone-64.a libcapstone-32.a -o libcapstone.a
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment