tonga
tonga

Reputation: 11981

Is Boost C++ thread supported by both iOS and Android?

I'm trying to write some multithreading code for mobile apps. I'm thinking about Boost C++ thread library for both iOS and Android. But anyone knows if Boost thread is supported by both platforms? Thanks!

Upvotes: 2

Views: 4161

Answers (2)

Matt Wilding
Matt Wilding

Reputation: 20163

Yes, I'm currently maintaining boost::thread code that runs on iOS and Android.

That said, unless you're attempting to run the same codebase on the two platforms, I would recommend Grand Central Dispatch on iOS instead of boost::thread.

Upvotes: 6

Aerilys
Aerilys

Reputation: 1639

I think these posts may help you:

Boost C++ and Android 3

C++ Boost on iPhone

Sounds like it's possible on both Android and IOS

Upvotes: 3

Related Questions