-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
standard includes not found by boost #576
Comments
The goal is to port the old toolchain recipes to the new one, therefore I tried to copy the functionality exactly. |
The problem is that boost is trying to use the C++ stl, which is not available in the NDK. If you look in the user-config.jam included by the recipe, it actually tries to get this include from |
The solution was to create a custom toolchain with the regular Android NDK and use that, because only then are the required files copied to the right place. (Switching to CrystaX NDK did not help in this case.) |
Building libtorrent depending on boost as found here: https://github.com/brussee/SkeletonApp/tree/master/recipes
fails because basic includes are not found.
This particular include is located in /boost/compatibility/cpp_c_headers/
Including this directory manually leads to another one, and another one, etc.
The text was updated successfully, but these errors were encountered: