You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All the build variables set in the configure script are overridable from
the command line. See the list in check_toolchain():
: ${PKG_CONFIG:=pkg-config}
: ${CC=gcc}
: ${LD=ld}
: ${OBJCOPY=objcopy}
: ${CLANG=clang}
: ${LLC=llc}
: ${M4=m4}
: ${EMACS=emacs}
: ${BPFTOOL=bpftool}
: ${READELF=readelf}
: ${ARCH_INCLUDES=}
: ${ARCH_NAME=}
They can be set in the environment when running configure, like:
CC=/my/cross/compiler/cc ./configure
No idea if anything else is needed for cross-compiling...
I'm not familiar with the configure script this project is using, how do I cross compile for android(arm) using ndk?
I want to statically compile my project which uses libxdp and run on AOSP.
The text was updated successfully, but these errors were encountered: