Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android NDK R8b breaks the build since they change the location of some header files. #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions configure_scripts/android_make_zmq.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ lib_dir=$INSTALL_PATH/lib
tools_prefix=$ARM_TOOLCHAIN/bin/arm-linux-androideabi

if [ ! -f .is_configured ]; then \
LD_LIBRARY_PATH=$lib_dir \
LD_LIBRARY_PATH=$lib_dir \
CFLAGS="-fPIC -I$include_dir -I$ARM_TOOLCHAIN/arm-none-linux-gnueabi/include -Wl,-rpath=$ARM_TOOLCHAIN/arm-none-linux-gnueabi/lib" \
CPPFLAGS="-I$include_dir -fvisibility=default" \
CPPFLAGS="-I$include_dir -fvisibility=default -I$ARM_TOOLCHAIN/arm-linux-androideabi/include/c++/4.6 -I$ARM_TOOLCHAIN/arm-linux-androideabi/include/c++/4.6/arm-linux-androideabi" \
LDFLAGS="-L$lib_dir -lgcc -Wl,-rpath=$lib_dir -Wl,-Bstatic -luuid -Wl,-Bdynamic" \
CC=$tools_prefix-gcc \
CXX=$tools_prefix-g++ \
Expand Down