
* llama : move end-user examples to tools directory --------- Co-authored-by: Xuan Son Nguyen <son@huggingface.co>
8 lines
207 B
Bash
Executable file
8 lines
207 B
Bash
Executable file
#!/bin/bash
|
|
cmake ../../../../ \
|
|
-DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DANDROID_ABI="arm64-v8a" \
|
|
-DANDROID_PLATFORM=android-23 $1
|
|
|
|
make -j4
|