ARM VGF Backend on Android #20334
Unanswered
tmayoff-hh
asked this question in
Q&A
Replies: 1 comment 2 replies
-
|
You need to build the ARM VGF libraries for Android manually since they're not included in the Python wheel. cmake -DCMAKE_TOOLCHAIN_FILE=<path-to-ndk>/build/cmake/android.toolchain.cmake \
-DANDROID_ABI=arm64-v8a \
-DANDROID_PLATFORM=android-21 \
-S <source-dir> -B <build-dir>This approach explicitly sets up the Android environment using NDK, which should help you resolve the undefined symbols issue. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm writing a conan recipe for executorch and want to add support for ARM VGF, but am running into issues.
I'm getting a bunch of undefined symbols:
The python wheel only seems to include linux/macos libraries. Do I need to build those for android manually? Does executorch provide a method to use an external version from the one the CMake tries to use.
Also is there any list of supported android devices for this backend as well?
Beta Was this translation helpful? Give feedback.
All reactions