Trying to cross-compile boost 1.69.0 in WSL Debian I run bootstrap.sh without icu or python support. After adding
using gcc : arm : arm-linux-gnueabihf-g++ ;
to project-config.jam
I get the following error when running ./b2 install
Performing configuration checks
- default address-model : 32-bit
- default architecture : arm
error: No best alternative for libs/context/build/asm_sources
next alternative: required properties: <abi>aapcs <address-model>32 <architecture>arm <binary-format>elf <threading>multi <toolset>clang
not matched
It goes on for several lines.
- What is going wrong there?
- Since I can't build directly on the target-system because it doesn't have enough hdd, what would you suggest doing about this error?
- Is there somewhere a pre-compiled libboost 1.69 I don't know about?