안드로이드 스튜디오 작업중 LOCAL_SRC_FILES points to a missing file 에러 해결방법
2016. 11. 2. 16:34
Android NDK: ERROR: [프로젝트 경로]\proj.android-studio\../cocos2d/external/freetype2/prebuilt/android/Android.mk:cocos_freetype2_static: LOCAL_SRC_FILES points to a missing file
Android NDK: Check that [프로젝트 경로]/proj.android-studio/../cocos2d/external/freetype2/prebuilt/android/arm64-v8a/libfreetype.a exists or that its path is correct
안드로이드 스튜디오로 작업 중 NDK빌드 시 위와 같은 에러가 나타나는 경우가 있다.
이유는 64비트로 prebuilt 된 freetype2가 존재하지 않기 때문이다.
Application.mk 파일 최 상단에 APP_ABI := armeabi 를 추가해주면 armeabi 만 적용 되며 빌드가 된다.
'Development > cocos2d-x' 카테고리의 다른 글
cocos2d-x 3.17.1 버전 Error Configuring 해결법 (0) | 2019.05.13 |
---|---|
RenderTexture 해상도 크기보다 크게 사용하기 (0) | 2018.10.29 |
cocos2dx eclipse 에서 android library update has encountered a problem 에러가 나오는 경우 (0) | 2016.04.18 |
cocos2d-x NDK_TOOLCHAIN_VERSION 변경방법 (0) | 2016.04.01 |
cocos2d-x _javaVM::GetEnv, jstring2string 에서 크래시날 경우 (0) | 2016.02.04 |