mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-22 10:01:50 +00:00
14 lines
453 B
Bash
Executable file
14 lines
453 B
Bash
Executable file
#!/bin/bash
|
|
|
|
./build_third_party_android_nothread.sh
|
|
|
|
export BUILD_DEPS_PATH="/home/ksh8281/work/Pando/build_deps/android/SM-N950N_armv-7a_7.1.1/"
|
|
export CXXFLAGS+=" -DENABLE_ICU -I"$BUILD_DEPS_PATH"/include/ "
|
|
export LDFLAGS+=" -L"$BUILD_DEPS_PATH"/lib -licui18n -licuuc"
|
|
|
|
echo $CXXFLAGS
|
|
echo $LDFLAGS
|
|
|
|
#make android.interpreter.release -j12
|
|
make android.interpreter.debug.static.standalone -j12
|
|
make android.interpreter.release.static.standalone -j12
|