armeabi-v7a.sh 336 B

123456789101112131415
  1. #!/bin/bash
  2. source "bin/init/env.sh"
  3. source "bin/plugin/naive/build.sh"
  4. rm -rf out/Release
  5. mv -f out/ReleaseArm out/Release || true
  6. export EXTRA_FLAGS='target_os="android" target_cpu="arm"'
  7. ./get-clang.sh
  8. ./build.sh
  9. DIR="$ROOT/armeabi-v7a"
  10. rm -rf $DIR
  11. mkdir -p $DIR
  12. cp out/Release/naive $DIR/$LIB_OUTPUT
  13. mv out/Release out/ReleaseArm