16 Jun
2015
16 Jun
'15
6:38 a.m.
for cross compiling you have to tell boost.build some properties (architecture, address-model, abi, binary-format) because boost.build can't detect it correctly + you have to use the correct assembler tool. I assume you want to compile for: architecture: ARM address-model: 32 api: AAPCS binary-format: ELF the command line should be: b2 toolset=gcc architecture=arm address-model=32 api=aapcs binary-format=elf