Skip to content
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

Added libc++_shared support #69

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Conversation

dbappz
Copy link

@dbappz dbappz commented Nov 16, 2015

No description provided.

@mink365
Copy link

mink365 commented Dec 31, 2015

this commit work for me, thanks.

set( ANDROID_RTTI ON )
set( ANDROID_CXX_ROOT "${ANDROID_NDK}/sources/cxx-stl/" )
set( ANDROID_LLVM_ROOT "${ANDROID_CXX_ROOT}/llvm-libc++" )
if( X86 )

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In order to match how the NDK works, this should probably be
if ( X86 OR X86_64 OR MIPS OR MIPS64 ) same with below on 1056.

It also looks like this has since been fixed in the NDK, so in future versions this will not be needed.
maybe
if ( (X86 OR X86_64 OR MIPS OR MIPS64) AND ANDROID_NDK_RELEASE_NUM LESS 10006 ) so that llvm-libc++-abi gets picked up when the next NDK is released.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants