Cross Build nghttp2 for Andriod
Build Environment Prepare
If you wan to build nghttp2 for andriod you shoud do two things. Frist you should get nghttp2 source code, second you need to configure your build environment.
Get Nghttp2-v1.41 Source Code
Get Andriod NDK and Configure Environment Variable.
Writing the Build Scripts
Arm64-v8a and Armeabi-v7a chip arch hvave covered the most device in the market. so we only provide Arm64-v8a arch’s build script,the armeabi-v7a’s build scripts reference the v8a.
The Target Device for Arm64-v8a
#!/bin/sh
export ANDROID_NDK_ROOT=/home/heyongxin/android-ndk-r16b
NDK=/home/heyongxin/android-ndk-r16b
NGHTTP2_TMP_FOLDER=$PWD
NGHTTP2_TARGET_API=android-23
NGHTTP2_GCC_VERSION=4.9
NGHTTP2_OUTPUT_PATH=$PWD/nghttp2_build
rm -rf $NGHTTP2_OUTPUT_PATH
mkdir -p $NGHTTP2_OUTPUT_PATH
mkdir -p $NGHTTP2_TMP_FOLDER/android-toolchain-aarch64
NDK_MAKE_TOOLCHAIN=$NDK/build/tools/make-standalone-toolchain.sh
${NDK_MAKE_TOOLCHAIN} \
--platform=${NGHTTP2_TARGET_API} \
--arch=arm64 \
--toolchain=aarch64-linux-android-${NGHTTP2_GCC_VERSION} \
--install-dir="${NGHTTP2_TMP_FOLDER}/android-toolchain-aarch64" \
--force
export TOOLCHAIN_PATH="${NGHTTP2_TMP_FOLDER}/android-toolchain-aarch64/bin"
export TOOL=aarch64-linux-android
export NDK_TOOLCHAIN_BASENAME=${TOOLCHAIN_PATH}/${TOOL}
export CC=${NDK_TOOLCHAIN_BASENAME}-gcc
export CXX=${NDK_TOOLCHAIN_BASENAME}-g++
export LINK=${CXX}
export LD=${NDK_TOOLCHAIN_BASENAME}-ld
export AR=${NDK_TOOLCHAIN_BASENAME}-ar
export RANLIB=${NDK_TOOLCHAIN_BASENAME}-ranlib
export STRIP=${NDK_TOOLCHAIN_BASENAME}-strip
export ARCH_FLAGS=
export ARCH_LINK=
export CPPFLAGS=" ${ARCH_FLAGS} -fpic -ffunction-sections -funwind-tables -fstack-protector -fno-strict-aliasing -finline-limit=64 "
export CXXFLAGS=" ${ARCH_FLAGS} -fpic -ffunction-sections -funwind-tables -fstack-protector -fno-strict-aliasing -finline-limit=64 -frtti -fexceptions "
export CFLAGS=" ${ARCH_FLAGS} -fpic -ffunction-sections -funwind-tables -fstack-protector -fno-strict-aliasing -finline-limit=64 "
export LDFLAGS=" ${ARCH_LINK} "
cd ${NGHTTP2_TMP_FOLDER}
echo $CC
./configure --host=aarch64-linux-android --disable-shared --enable-static
make
Build Output
If you run build scripts no error, it mean you have build success. Right now you can check the build output, in the source code root path. you will find the .libs folder. the folder context are as follows:
.libs
├── libnghttp2.a
├── libnghttp2.la -> ../libnghttp2.la
└── libnghttp2.lai
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.