faithfracture / Apple-Boost-BuildScript

Script for building Boost for Apple platforms (iOS, iOS Simulator, tvOS, tvOS Simulator, OS X)
279 stars 111 forks source link

wrong library name 'metaparse' in the --with-<library> option. #29

Closed ludaye123 closed 6 years ago

ludaye123 commented 6 years ago

I use ./boost.sh -ios --boost-version 1.67.0 --boost-libs all --min-ios-version 9.0

but get a error error: wrong library name 'metaparse' in the --with- option.

What should I do? Please

faithfracture commented 6 years ago

It looks the available compiled libraries have changed, some additions & some removals, metaparse being one of them. I'll need to update the script so that --boost-libs all works correctly for Boost 1.67.

There's a couple other things that probably need to happen with the update, so it's not going to be a quick turn around. In the meantime, you can run the script like this to get a build of version 1.67.0 with all the available libraries.

./boost.sh -ios --boost-version 1.67.0 --min-ios-version 9.0 --boost-libs "atomic chrono container context contract coroutine date_time exception fiber filesystem graph graph_parallel iostreams locale log math mpi program_options python random regex serialization signals stacktrace system test thread timer type_erasure wave"

ludaye123 commented 6 years ago

Awesome, Thanks for your reply!