update c++ complication rules
This commit is contained in:
parent
3fd719e30d
commit
ae39851162
8 changed files with 166 additions and 15 deletions
11
examples/LLMs/cpp/build-android.sh
Executable file
11
examples/LLMs/cpp/build-android.sh
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash
|
||||
if [ ! -d "$NDK_PATH" ]; then
|
||||
echo "Error: NDK_PATH '$NDK_PATH' not found."
|
||||
echo "Please set NDK_PATH environment variable to your Android NDK directory."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
$NDK_PATH/ndk-build \
|
||||
NDK_PROJECT_PATH=. \
|
||||
APP_BUILD_SCRIPT=./Android.mk \
|
||||
NDK_APPLICATION_MK=./Application.mk
|
||||
Loading…
Add table
Add a link
Reference in a new issue