2016-06-07 53 views

回答

3

工作对我来说这

  1. 我创建了一个铿锵独立的工具链https://developer.android.com/ndk/guides/standalone_toolchain.html
  2. 我我的道路设置为PATH=/your/path/ndk/toolchain/bin
  3. 运行./bootstrap.sh --with-toolset=clang
  4. ./b2 toolset=clang cxxflags="-stdlib=libc++" threading=multi threadapi=pthread link=shared runtime-link=shared -j 6
  5. 我联系这aginst我的项目

我已经采取了旁观

Compile and use boost for Android NDK R10e

http://nolimitsdesigns.com/game-design/how-to-build-boost-for-the-android-ndk-llvm/

3

构建boost_1_62_0为Android-21 Windows64下这些页面。

假设NDK安装到C:\Programs\Android\sdk\ndk-bundle并提升c:\boost_1_62_0

安装MinGW的:using msys2-x86_64 from MSYS2

安装在mingw提示构建工具(像这样):

$ pacman -S gcc binutils 

C:\boost_1_62_0\这样的文本内容创建android.clang.jam文件:

import os ; 
local AndroidNDKRoot = C:/Programs/Android/sdk/ndk-bundle ; 
using clang : android 
: 
C:/Programs/Android/toolchain21/bin/clang++ 
: 
<compileflags>-fexceptions 
<compileflags>-frtti 
<compileflags>-fpic 
<compileflags>-ffunction-sections 
<compileflags>-funwind-tables 
<compileflags>-Wno-psabi 
<compileflags>-march=armv7-a 
<compileflags>-mfloat-abi=softfp 
<compileflags>-mfpu=vfpv3-d16 
<compileflags>-fomit-frame-pointer 
<compileflags>-fno-strict-aliasing 
<compileflags>-finline-limit=64 
<compileflags>-I$(AndroidNDKRoot)/platforms/android-21/arch-arm/usr/include 
<compileflags>-Wa,--noexecstack 
<compileflags>-DANDROID 
<compileflags>-D__ANDROID__ 
<compileflags>-DNDEBUG 
<compileflags>-O2 
#<compileflags>-g 
<compileflags>-I$(AndroidNDKRoot)/sources/cxx-stl/gnu-libstdc++/4.9/include 
<compileflags>-I$(AndroidNDKRoot)/sources/cxx-stl/gnu-libstdc++/4.9/libs/armeabi/include 
<architecture>arm 
<compileflags>-fvisibility=hidden 
<compileflags>-fvisibility-inlines-hidden 
<compileflags>-fdata-sections 
<cxxflags>-D__arm__ 
<cxxflags>-D_REENTRANT 
<cxxflags>-D_GLIBCXX__PTHREADS 
; 

明暗提示的设置提升:

$ export NDK=/c/Programs/Android/sdk/ndk-bundle 
$ echo ensure msi-installed Python is on path (not msys version): 
$ export PATH=/c/Python27:$PATH 
$ $NDK/build/tools/make_standalone_toolchain.py --arch arm --api 21 --install-dir /c/Programs/Android/toolchain21 
$ ./bootstrap.sh --with-toolset=gcc 
$ ./b2 --user-config=android.clang.jam threading=multi link=static \ 
runtime-link=static toolset=clang-android target-os=linux \ 
threadapi=pthread --stagedir=android --with-chrono \ 
--with-program_options --with-system --with-thread --with-random \ 
--with-regex 
0

是的,您提到的存储库显然不再被维护。作者似乎也不回答关于这个问题的任何邮件。如果你看起来你会看到在那里支持的每个新的boost版本都需要很多工作(配置文件中有许多特殊的标志)。这大概是为什么他没有时间再维持下去。 我也尝试使用叉子更新到1.64,但在无数错误消息后放弃,而是使用基于crystax脚本的不同方法。它的简单,应该适用于几乎任何版本。您可以在这里找到详细信息和脚本(简单且无痛执行):http://silverglint.com/boost-for-android/ 适用于clang和gcc。

还包括一个示例应用程序,向您展示如何使用由此构建的增强二进制文件。