apotocki / boost-iosx

Builds Boost C++ libraries and packages them as XCFrameworks for iOS (simulator and device), visionOS (simulator and device), macOS, and Mac Catalyst (Intel & Apple Silicon M1).
Boost Software License 1.0
60 stars 17 forks source link

possibility to get a single boost library #14

Closed mesqueeb closed 3 months ago

mesqueeb commented 3 months ago

Hey! I am trying to use this as a drop in replacement for another boost library I was consuming. The other one would not build for visionOS, that how I reached this repo!

Thanks for all the hard work. : )

I have many build issues it seems, but I'm not sure yet why. I'm thinking perhaps because this boost is not a single framework but it's split up into several ones.

Is there an option to build it as a single boost.xcframework?

apotocki commented 3 months ago

I don't think that's a good idea. Boost is a set of different libraries from different authors. That's why each one corresponds to a different xcframework. We should be aware of which libraries we are using and specify only them when linking.

mesqueeb commented 3 months ago

Fair enough!