디버그 심볼즈 삭제한 안드로이드 so파일 뽑기 명령어
# 1. ARM64 (최신 스마트폰용 - 필수)
scons platform=android arch=arm64 target=template_release debug_symbols=no -j11
# 2. ARM32 (구형 스마트폰용)
scons platform=android arch=arm32 target=template_release debug_symbols=no -j11
# 3. x86_64 (크롬북, 일부 태블릿용)
scons platform=android arch=x86_64 target=template_release debug_symbols=no -j11
# 4. x86_32 (거의 안 쓰이지만 하위 호환용)
scons platform=android arch=x86_32 target=template_release debug_symbols=no -j11
# 1. ARM64 디버그
scons platform=android arch=arm64 target=template_debug debug_symbols=yes -j11
# 2. ARM32 디버그
scons platform=android arch=arm32 target=template_debug debug_symbols=yes -j11
# 3. x86_64 디버그
scons platform=android arch=x86_64 target=template_debug debug_symbols=yes -j11
# 4. x86_32 디버그
scons platform=android arch=x86_32 target=template_debug debug_symbols=yes -j11
댓글
댓글 쓰기